@paniolo/cli 0.5.11 → 0.5.13

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
@@ -9,9 +9,9 @@ binary. Commands include `paniolo scan`, `paniolo qmd`, `paniolo wiki`,
9
9
  ## Local release workflow
10
10
 
11
11
  ```bash
12
- node npm/scripts/gen-packages.mjs --tool cli
13
- node npm/scripts/stage-binaries.mjs --tool cli
14
- node npm/scripts/pack-smoke.mjs --tool cli
12
+ cargo run -p paniolo-internal-cli -- release gen-packages --tool cli
13
+ cargo run -p paniolo-internal-cli -- release stage --tool cli
14
+ cargo run -p paniolo-internal-cli -- release pack-smoke --tool cli
15
15
  ```
16
16
 
17
17
  Ranch Hand releases are validated locally. `paniolo-internal` is not included
package/bin/paniolo.js CHANGED
@@ -32,8 +32,9 @@ function ensureExecutable(binary) {
32
32
  // The supported platform/arch keys, the platform-package scope, and the binary
33
33
  // name are derived from this wrapper's own package.json — its
34
34
  // optionalDependencies are the per-platform packages, generated from the single
35
- // target list in npm/scripts/tools.mjs. So nothing about the target set is
36
- // duplicated here; adding a platform there flows through on the next generate.
35
+ // target list in paniolo-internal's release descriptors. So nothing about the
36
+ // target set is duplicated here; adding a platform there flows through on the
37
+ // next generate.
37
38
  const wrapperPkg = require("../package.json");
38
39
  const PKG_PREFIX = `${wrapperPkg.name}-`; // e.g. "@paniolo/cli-"
39
40
  const BIN_NAME = Object.keys(wrapperPkg.bin)[0]; // "paniolo"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@paniolo/cli",
3
- "version": "0.5.11",
3
+ "version": "0.5.13",
4
4
  "description": "Unified native Paniolo CLI, distributed as per-platform npm packages.",
5
5
  "license": "UNLICENSED",
6
6
  "bin": {
@@ -13,11 +13,11 @@
13
13
  "node": ">=18"
14
14
  },
15
15
  "optionalDependencies": {
16
- "@paniolo/cli-linux-x64": "0.5.11",
17
- "@paniolo/cli-linux-arm64": "0.5.11",
18
- "@paniolo/cli-win32-x64": "0.5.11",
19
- "@paniolo/cli-win32-arm64": "0.5.11",
20
- "@paniolo/cli-darwin-x64": "0.5.11",
21
- "@paniolo/cli-darwin-arm64": "0.5.11"
16
+ "@paniolo/cli-linux-x64": "0.5.13",
17
+ "@paniolo/cli-linux-arm64": "0.5.13",
18
+ "@paniolo/cli-win32-x64": "0.5.13",
19
+ "@paniolo/cli-win32-arm64": "0.5.13",
20
+ "@paniolo/cli-darwin-x64": "0.5.13",
21
+ "@paniolo/cli-darwin-arm64": "0.5.13"
22
22
  }
23
23
  }