bun 1.3.10 → 1.3.11
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
|
@@ -445,7 +445,7 @@ function installBun(platform, dst) {
|
|
|
445
445
|
write(join(cwd, "package.json"), "{}");
|
|
446
446
|
let { exitCode } = spawn(
|
|
447
447
|
"npm",
|
|
448
|
-
["install", "--loglevel=error", "--prefer-offline", "--no-audit", "--progress=false", `${module2}@1.3.
|
|
448
|
+
["install", "--loglevel=error", "--prefer-offline", "--no-audit", "--progress=false", `${module2}@1.3.11`],
|
|
449
449
|
{
|
|
450
450
|
cwd,
|
|
451
451
|
stdio: "pipe",
|
|
@@ -466,7 +466,7 @@ function installBun(platform, dst) {
|
|
|
466
466
|
__name(installBun, "installBun");
|
|
467
467
|
function downloadBun(platform, dst) {
|
|
468
468
|
return __async(this, null, function* () {
|
|
469
|
-
let tgz = yield (yield fetch(`https://registry.npmjs.org/@oven/${platform.bin}/-/${platform.bin}-1.3.
|
|
469
|
+
let tgz = yield (yield fetch(`https://registry.npmjs.org/@oven/${platform.bin}/-/${platform.bin}-1.3.11.tgz`)).arrayBuffer(), buffer;
|
|
470
470
|
try {
|
|
471
471
|
buffer = (0, import_zlib.unzipSync)(tgz);
|
|
472
472
|
} 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.3.
|
|
4
|
+
"version": "1.3.11",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"postinstall": "node install.js"
|
|
7
7
|
},
|
|
8
8
|
"optionalDependencies": {
|
|
9
|
-
"@oven/bun-darwin-aarch64": "1.3.
|
|
10
|
-
"@oven/bun-darwin-x64": "1.3.
|
|
11
|
-
"@oven/bun-darwin-x64-baseline": "1.3.
|
|
12
|
-
"@oven/bun-linux-aarch64": "1.3.
|
|
13
|
-
"@oven/bun-linux-x64": "1.3.
|
|
14
|
-
"@oven/bun-linux-x64-baseline": "1.3.
|
|
15
|
-
"@oven/bun-linux-aarch64-musl": "1.3.
|
|
16
|
-
"@oven/bun-linux-x64-musl": "1.3.
|
|
17
|
-
"@oven/bun-linux-x64-musl-baseline": "1.3.
|
|
18
|
-
"@oven/bun-windows-x64": "1.3.
|
|
19
|
-
"@oven/bun-windows-x64-baseline": "1.3.
|
|
20
|
-
"@oven/bun-windows-aarch64": "1.3.
|
|
9
|
+
"@oven/bun-darwin-aarch64": "1.3.11",
|
|
10
|
+
"@oven/bun-darwin-x64": "1.3.11",
|
|
11
|
+
"@oven/bun-darwin-x64-baseline": "1.3.11",
|
|
12
|
+
"@oven/bun-linux-aarch64": "1.3.11",
|
|
13
|
+
"@oven/bun-linux-x64": "1.3.11",
|
|
14
|
+
"@oven/bun-linux-x64-baseline": "1.3.11",
|
|
15
|
+
"@oven/bun-linux-aarch64-musl": "1.3.11",
|
|
16
|
+
"@oven/bun-linux-x64-musl": "1.3.11",
|
|
17
|
+
"@oven/bun-linux-x64-musl-baseline": "1.3.11",
|
|
18
|
+
"@oven/bun-windows-x64": "1.3.11",
|
|
19
|
+
"@oven/bun-windows-x64-baseline": "1.3.11",
|
|
20
|
+
"@oven/bun-windows-aarch64": "1.3.11"
|
|
21
21
|
},
|
|
22
22
|
"bin": {
|
|
23
23
|
"bun": "bin/bun.exe",
|