@sys9/run9-cli 0.2.5 → 0.3.0
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
|
@@ -12,6 +12,7 @@ bun install -g @sys9/run9-cli
|
|
|
12
12
|
|
|
13
13
|
The installed `run9` launcher is a POSIX shell wrapper around the bundled
|
|
14
14
|
native binary, so `bun install -g` works even when `node` is not present.
|
|
15
|
+
This package only supports Linux/macOS on `x64`/`arm64`; npm metadata rejects Windows.
|
|
15
16
|
|
|
16
17
|
Run:
|
|
17
18
|
|
package/bin/run9
CHANGED
|
@@ -15,7 +15,7 @@ resolve_script_path() {
|
|
|
15
15
|
}
|
|
16
16
|
|
|
17
17
|
script_path="$(resolve_script_path "$0")"
|
|
18
|
-
script_dir="$(CDPATH= cd
|
|
18
|
+
script_dir="$(CDPATH= cd "$(dirname "$script_path")" && pwd)"
|
|
19
19
|
|
|
20
20
|
uname_s="$(uname -s)"
|
|
21
21
|
uname_m="$(uname -m)"
|
package/package.json
CHANGED
|
@@ -1,15 +1,19 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sys9/run9-cli",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.3.0",
|
|
4
4
|
"description": "run9 CLI with bundled native binaries for Linux and macOS",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"bin": {
|
|
7
7
|
"run9": "bin/run9"
|
|
8
8
|
},
|
|
9
|
-
"
|
|
10
|
-
|
|
11
|
-
"
|
|
12
|
-
|
|
9
|
+
"os": [
|
|
10
|
+
"darwin",
|
|
11
|
+
"linux"
|
|
12
|
+
],
|
|
13
|
+
"cpu": [
|
|
14
|
+
"arm64",
|
|
15
|
+
"x64"
|
|
16
|
+
],
|
|
13
17
|
"files": [
|
|
14
18
|
"bin",
|
|
15
19
|
"vendor",
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|