@paniolo/cli 0.5.12 → 0.5.14
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/bin/paniolo.js +3 -2
- package/package.json +7 -7
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
|
|
36
|
-
// duplicated here; adding a platform there flows through on the
|
|
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.
|
|
3
|
+
"version": "0.5.14",
|
|
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.
|
|
17
|
-
"@paniolo/cli-linux-arm64": "0.5.
|
|
18
|
-
"@paniolo/cli-win32-x64": "0.5.
|
|
19
|
-
"@paniolo/cli-win32-arm64": "0.5.
|
|
20
|
-
"@paniolo/cli-darwin-x64": "0.5.
|
|
21
|
-
"@paniolo/cli-darwin-arm64": "0.5.
|
|
16
|
+
"@paniolo/cli-linux-x64": "0.5.14",
|
|
17
|
+
"@paniolo/cli-linux-arm64": "0.5.14",
|
|
18
|
+
"@paniolo/cli-win32-x64": "0.5.14",
|
|
19
|
+
"@paniolo/cli-win32-arm64": "0.5.14",
|
|
20
|
+
"@paniolo/cli-darwin-x64": "0.5.14",
|
|
21
|
+
"@paniolo/cli-darwin-arm64": "0.5.14"
|
|
22
22
|
}
|
|
23
23
|
}
|