sloppycode 0.2.124 → 0.2.125
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/package.json +12 -12
- package/postinstall.mjs +2 -1
package/package.json
CHANGED
|
@@ -34,19 +34,19 @@
|
|
|
34
34
|
"scripts": {
|
|
35
35
|
"postinstall": "bun ./postinstall.mjs || node ./postinstall.mjs"
|
|
36
36
|
},
|
|
37
|
-
"version": "0.2.
|
|
37
|
+
"version": "0.2.125",
|
|
38
38
|
"license": "MIT",
|
|
39
39
|
"optionalDependencies": {
|
|
40
|
-
"slopcode-bin-darwin-arm64": "0.2.
|
|
41
|
-
"slopcode-bin-linux-x64-baseline": "0.2.
|
|
42
|
-
"slopcode-bin-windows-x64": "0.2.
|
|
43
|
-
"slopcode-bin-linux-x64": "0.2.
|
|
44
|
-
"slopcode-bin-linux-x64-baseline-musl": "0.2.
|
|
45
|
-
"slopcode-bin-linux-x64-musl": "0.2.
|
|
46
|
-
"slopcode-bin-linux-arm64": "0.2.
|
|
47
|
-
"slopcode-bin-windows-x64-baseline": "0.2.
|
|
48
|
-
"slopcode-bin-linux-arm64-musl": "0.2.
|
|
49
|
-
"slopcode-bin-darwin-x64-baseline": "0.2.
|
|
50
|
-
"slopcode-bin-darwin-x64": "0.2.
|
|
40
|
+
"slopcode-bin-darwin-arm64": "0.2.125",
|
|
41
|
+
"slopcode-bin-linux-x64-baseline": "0.2.125",
|
|
42
|
+
"slopcode-bin-windows-x64": "0.2.125",
|
|
43
|
+
"slopcode-bin-linux-x64": "0.2.125",
|
|
44
|
+
"slopcode-bin-linux-x64-baseline-musl": "0.2.125",
|
|
45
|
+
"slopcode-bin-linux-x64-musl": "0.2.125",
|
|
46
|
+
"slopcode-bin-linux-arm64": "0.2.125",
|
|
47
|
+
"slopcode-bin-windows-x64-baseline": "0.2.125",
|
|
48
|
+
"slopcode-bin-linux-arm64-musl": "0.2.125",
|
|
49
|
+
"slopcode-bin-darwin-x64-baseline": "0.2.125",
|
|
50
|
+
"slopcode-bin-darwin-x64": "0.2.125"
|
|
51
51
|
}
|
|
52
52
|
}
|
package/postinstall.mjs
CHANGED
|
@@ -179,7 +179,8 @@ async function installAndroid(arch) {
|
|
|
179
179
|
const archive = await androidAsset(arch, tmp)
|
|
180
180
|
const extract = path.join(tmp, "package")
|
|
181
181
|
await fs.promises.mkdir(extract, { recursive: true })
|
|
182
|
-
const result = require("child_process").spawnSync("tar", ["-xzf", archive, "-C", extract], {
|
|
182
|
+
const result = require("child_process").spawnSync("tar", ["-xzf", path.basename(archive), "-C", extract], {
|
|
183
|
+
cwd: path.dirname(archive),
|
|
183
184
|
encoding: "utf8",
|
|
184
185
|
timeout: 120000,
|
|
185
186
|
})
|