bun 1.4.1 → 1.4.2
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/install.js +2 -2
- package/package.json +13 -13
package/install.js
CHANGED
|
@@ -467,7 +467,7 @@ function installBun(platform, dst) {
|
|
|
467
467
|
write(join(cwd, "package.json"), "{}");
|
|
468
468
|
let { exitCode } = spawn(
|
|
469
469
|
"npm",
|
|
470
|
-
["install", "--loglevel=error", "--prefer-offline", "--no-audit", "--progress=false", `${module2}@1.4.
|
|
470
|
+
["install", "--loglevel=error", "--prefer-offline", "--no-audit", "--progress=false", `${module2}@1.4.2`],
|
|
471
471
|
{
|
|
472
472
|
cwd,
|
|
473
473
|
stdio: "pipe",
|
|
@@ -488,7 +488,7 @@ function installBun(platform, dst) {
|
|
|
488
488
|
__name(installBun, "installBun");
|
|
489
489
|
function downloadBun(platform, dst) {
|
|
490
490
|
return __async(this, null, function* () {
|
|
491
|
-
let tgz = yield (yield fetch(`https://registry.npmjs.org/@oven/${platform.bin}/-/${platform.bin}-1.4.
|
|
491
|
+
let tgz = yield (yield fetch(`https://registry.npmjs.org/@oven/${platform.bin}/-/${platform.bin}-1.4.2.tgz`)).arrayBuffer(), buffer;
|
|
492
492
|
try {
|
|
493
493
|
buffer = (0, import_zlib.unzipSync)(tgz);
|
|
494
494
|
} catch (cause) {
|
package/package.json
CHANGED
|
@@ -1,23 +1,23 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "bun",
|
|
3
3
|
"description": "Bun is a fast all-in-one JavaScript runtime.",
|
|
4
|
-
"version": "1.4.
|
|
4
|
+
"version": "1.4.2",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"postinstall": "node install.js"
|
|
7
7
|
},
|
|
8
8
|
"optionalDependencies": {
|
|
9
|
-
"@oven/bun-darwin-aarch64": "1.4.
|
|
10
|
-
"@oven/bun-darwin-x64": "1.4.
|
|
11
|
-
"@oven/bun-linux-aarch64": "1.4.
|
|
12
|
-
"@oven/bun-linux-x64": "1.4.
|
|
13
|
-
"@oven/bun-linux-aarch64-musl": "1.4.
|
|
14
|
-
"@oven/bun-linux-x64-musl": "1.4.
|
|
15
|
-
"@oven/bun-linux-aarch64-android": "1.4.
|
|
16
|
-
"@oven/bun-linux-x64-android": "1.4.
|
|
17
|
-
"@oven/bun-freebsd-aarch64": "1.4.
|
|
18
|
-
"@oven/bun-freebsd-x64": "1.4.
|
|
19
|
-
"@oven/bun-windows-x64": "1.4.
|
|
20
|
-
"@oven/bun-windows-aarch64": "1.4.
|
|
9
|
+
"@oven/bun-darwin-aarch64": "1.4.2",
|
|
10
|
+
"@oven/bun-darwin-x64": "1.4.2",
|
|
11
|
+
"@oven/bun-linux-aarch64": "1.4.2",
|
|
12
|
+
"@oven/bun-linux-x64": "1.4.2",
|
|
13
|
+
"@oven/bun-linux-aarch64-musl": "1.4.2",
|
|
14
|
+
"@oven/bun-linux-x64-musl": "1.4.2",
|
|
15
|
+
"@oven/bun-linux-aarch64-android": "1.4.2",
|
|
16
|
+
"@oven/bun-linux-x64-android": "1.4.2",
|
|
17
|
+
"@oven/bun-freebsd-aarch64": "1.4.2",
|
|
18
|
+
"@oven/bun-freebsd-x64": "1.4.2",
|
|
19
|
+
"@oven/bun-windows-x64": "1.4.2",
|
|
20
|
+
"@oven/bun-windows-aarch64": "1.4.2"
|
|
21
21
|
},
|
|
22
22
|
"bin": {
|
|
23
23
|
"bun": "bin/bun.exe",
|