@aryaminus/controlkeel 0.1.14 → 0.1.16

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +9 -2
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -2,18 +2,25 @@
2
2
 
3
3
  This package is a bootstrap installer for the native ControlKeel CLI.
4
4
 
5
+ Both npmjs and GitHub Packages publish the same bootstrap package. In both cases, installation downloads the matching native ControlKeel binary from GitHub Releases.
6
+
5
7
  ## Install
6
8
 
7
9
  ```bash
8
10
  npm i -g @aryaminus/controlkeel
11
+ # or: pnpm add -g @aryaminus/controlkeel
12
+ # or: yarn global add @aryaminus/controlkeel
13
+
14
+ # one-off run
15
+ npx @aryaminus/controlkeel@latest
9
16
  ```
10
17
 
11
- The package downloads the matching ControlKeel binary from GitHub Releases and exposes the `controlkeel` command.
18
+ The package installs and exposes the `controlkeel` command.
12
19
 
13
20
  You can also install the same bootstrap package from GitHub Packages:
14
21
 
15
22
  ```bash
16
23
  echo "@aryaminus:registry=https://npm.pkg.github.com" >> ~/.npmrc
17
- echo "//npm.pkg.github.com/:_authToken=YOUR_GITHUB_CLASSIC_PAT" >> ~/.npmrc
24
+ echo "//npm.pkg.github.com/:_authToken=YOUR_GITHUB_TOKEN_WITH_READ_PACKAGES" >> ~/.npmrc
18
25
  npm i -g @aryaminus/controlkeel --registry=https://npm.pkg.github.com
19
26
  ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aryaminus/controlkeel",
3
- "version": "0.1.14",
3
+ "version": "0.1.16",
4
4
  "description": "Bootstrap installer for the ControlKeel native CLI.",
5
5
  "license": "Apache-2.0",
6
6
  "repository": {