pallium 0.9.1 → 0.9.2

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.
package/README.md CHANGED
@@ -4,14 +4,15 @@ NPM installer for the Pallium CLI.
4
4
 
5
5
  ```bash
6
6
  npm install -g pallium
7
- pallium doctor
7
+ pallium version
8
8
  ```
9
9
 
10
- The package installs the matching Pallium release binary from GitHub. If a
11
- prebuilt binary is unavailable for the current platform, it falls back to:
10
+ The package installs the matching Pallium release binary from GitHub into
11
+ `~/.pallium/npm/<version>/`. If a prebuilt binary is unavailable for the current
12
+ platform, it falls back to:
12
13
 
13
14
  ```bash
14
- go install github.com/tszaks/pallium@v0.9.1
15
+ go install github.com/tszaks/pallium@v0.9.2
15
16
  ```
16
17
 
17
18
  Supported prebuilt platforms:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pallium",
3
- "version": "0.9.1",
3
+ "version": "0.9.2",
4
4
  "description": "Local-first CLI for AI-powered coding workflows.",
5
5
  "license": "MIT",
6
6
  "homepage": "https://github.com/tszaks/pallium#readme",
package/scripts/test.js CHANGED
@@ -6,8 +6,8 @@ const { assetName, parseChecksum, platformKey } = require("./lib");
6
6
 
7
7
  assert.match(platformKey(), /^(darwin|linux|win32|freebsd|openbsd|aix|sunos)-/);
8
8
  if (["darwin-arm64", "darwin-amd64", "linux-arm64", "linux-amd64"].includes(platformKey())) {
9
- assert.match(assetName(), /^pallium_0\.9\.1_(darwin|linux)_(arm64|amd64)\.tar\.gz$/);
9
+ assert.match(assetName(), /^pallium_0\.9\.2_(darwin|linux)_(arm64|amd64)\.tar\.gz$/);
10
10
  }
11
- assert.equal(parseChecksum("abc123 pallium_0.9.1_darwin_arm64.tar.gz\n", "pallium_0.9.1_darwin_arm64.tar.gz"), "abc123");
11
+ assert.equal(parseChecksum("abc123 pallium_0.9.2_darwin_arm64.tar.gz\n", "pallium_0.9.2_darwin_arm64.tar.gz"), "abc123");
12
12
 
13
13
  console.log("pallium npm wrapper tests passed");