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