slopcode 0.0.4 → 0.0.6
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/slopcode +2 -1
- package/package.json +12 -12
package/bin/slopcode
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
#!/usr/bin/env
|
|
1
|
+
#!/usr/bin/env sh
|
|
2
|
+
':' //; runner="$(command -v node || command -v bun || true)"; [ -n "$runner" ] || { echo "slopcode requires bun or node in PATH" >&2; exit 127; }; exec "$runner" "$0" "$@"
|
|
2
3
|
|
|
3
4
|
const childProcess = require("child_process")
|
|
4
5
|
const fs = require("fs")
|
package/package.json
CHANGED
|
@@ -6,19 +6,19 @@
|
|
|
6
6
|
"scripts": {
|
|
7
7
|
"postinstall": "bun ./postinstall.mjs || node ./postinstall.mjs"
|
|
8
8
|
},
|
|
9
|
-
"version": "0.0.
|
|
9
|
+
"version": "0.0.6",
|
|
10
10
|
"license": "MIT",
|
|
11
11
|
"optionalDependencies": {
|
|
12
|
-
"slopcode-bin-linux-x64-baseline-musl": "0.0.
|
|
13
|
-
"slopcode-bin-darwin-x64-baseline": "0.0.
|
|
14
|
-
"slopcode-bin-linux-arm64-musl": "0.0.
|
|
15
|
-
"slopcode-bin-darwin-x64": "0.0.
|
|
16
|
-
"slopcode-bin-windows-x64": "0.0.
|
|
17
|
-
"slopcode-bin-windows-x64-baseline": "0.0.
|
|
18
|
-
"slopcode-bin-linux-x64-baseline": "0.0.
|
|
19
|
-
"slopcode-bin-linux-x64-musl": "0.0.
|
|
20
|
-
"slopcode-bin-linux-arm64": "0.0.
|
|
21
|
-
"slopcode-bin-darwin-arm64": "0.0.
|
|
22
|
-
"slopcode-bin-linux-x64": "0.0.
|
|
12
|
+
"slopcode-bin-linux-x64-baseline-musl": "0.0.6",
|
|
13
|
+
"slopcode-bin-darwin-x64-baseline": "0.0.6",
|
|
14
|
+
"slopcode-bin-linux-arm64-musl": "0.0.6",
|
|
15
|
+
"slopcode-bin-darwin-x64": "0.0.6",
|
|
16
|
+
"slopcode-bin-windows-x64": "0.0.6",
|
|
17
|
+
"slopcode-bin-windows-x64-baseline": "0.0.6",
|
|
18
|
+
"slopcode-bin-linux-x64-baseline": "0.0.6",
|
|
19
|
+
"slopcode-bin-linux-x64-musl": "0.0.6",
|
|
20
|
+
"slopcode-bin-linux-arm64": "0.0.6",
|
|
21
|
+
"slopcode-bin-darwin-arm64": "0.0.6",
|
|
22
|
+
"slopcode-bin-linux-x64": "0.0.6"
|
|
23
23
|
}
|
|
24
24
|
}
|