@h-rig/cli 0.0.6-alpha.114 → 0.0.6-alpha.116
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/rig.js +1 -1
- package/package.json +6 -3
package/bin/rig.js
CHANGED
|
@@ -8,7 +8,7 @@ let bin;
|
|
|
8
8
|
try { bin = require.resolve("@h-rig/cli-" + tag + "/" + exe); } catch (_) {}
|
|
9
9
|
if (!bin) {
|
|
10
10
|
console.error("@h-rig/cli: no prebuilt rig binary for " + tag + ".");
|
|
11
|
-
console.error("Supported: darwin-arm64, darwin-x64.");
|
|
11
|
+
console.error("Supported: darwin-arm64, darwin-x64, linux-x64, linux-arm64, win32-x64.");
|
|
12
12
|
process.exit(1);
|
|
13
13
|
}
|
|
14
14
|
const res = spawnSync(bin, process.argv.slice(2), { stdio: "inherit" });
|
package/package.json
CHANGED
|
@@ -1,14 +1,17 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@h-rig/cli",
|
|
3
|
-
"version": "0.0.6-alpha.
|
|
3
|
+
"version": "0.0.6-alpha.116",
|
|
4
4
|
"description": "Rig CLI — installs the prebuilt single-file rig binary for your platform.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"bin": {
|
|
7
7
|
"rig": "bin/rig.js"
|
|
8
8
|
},
|
|
9
9
|
"optionalDependencies": {
|
|
10
|
-
"@h-rig/cli-darwin-arm64": "0.0.6-alpha.
|
|
11
|
-
"@h-rig/cli-darwin-x64": "0.0.6-alpha.
|
|
10
|
+
"@h-rig/cli-darwin-arm64": "0.0.6-alpha.116",
|
|
11
|
+
"@h-rig/cli-darwin-x64": "0.0.6-alpha.116",
|
|
12
|
+
"@h-rig/cli-linux-x64": "0.0.6-alpha.116",
|
|
13
|
+
"@h-rig/cli-linux-arm64": "0.0.6-alpha.116",
|
|
14
|
+
"@h-rig/cli-win32-x64": "0.0.6-alpha.116"
|
|
12
15
|
},
|
|
13
16
|
"files": [
|
|
14
17
|
"bin"
|