From 4b4307f09f419ebacdb91b707d8cd22cb189d9a8 Mon Sep 17 00:00:00 2001 From: "Andrew A. Barber" Date: Fri, 7 Nov 2025 10:42:21 +0000 Subject: [PATCH 1/2] Update README to use npm registry instead of GitHub Packages --- README.md | 14 +++++--------- 1 file changed, 5 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index 524c73d..52889a9 100644 --- a/README.md +++ b/README.md @@ -14,17 +14,13 @@ npm i @space48/sdm Pre-requisites for installation ------------------------------- -### Configure @space48 npm scope +### Install sdm -sdm is distributed as a private npm package in the @space48 scope. To install sdm and other private Space 48 npm -packages, you must first configure the @space48 scope in npm. +Install sdm from npm: -1. [Create a github access token](https://github.com/settings/tokens/new) with `read packages` and `repo` privileges -2. Configure npm so that you can install sdm and other private Space 48 packages using your email and token created in Step 1 as yur username & password - - ```bash - npm login --registry=https://npm.pkg.github.com --scope=@space48 - ``` +```bash +npm install @space48/sdm +``` ### Enable node 20 From 09f2a6f90eb5ad1c88fb5b17b6ec80caef2905e3 Mon Sep 17 00:00:00 2001 From: "Andrew A. Barber" Date: Fri, 7 Nov 2025 10:42:24 +0000 Subject: [PATCH 2/2] 1.0.1 --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 9e4c97b..b1d243a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@space48/sdm", - "version": "1.0.0", + "version": "1.0.1", "description": "Command line tools for piping data in and out of APIs", "main": "lib/index.js", "types": "lib/index.d.ts", @@ -90,4 +90,4 @@ "eslint --fix" ] } -} \ No newline at end of file +}