bun 1.0.25 → 1.0.27
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/bun +2 -2
- package/install.js +2 -2
- package/package.json +7 -7
package/bin/bun
CHANGED
|
@@ -352,7 +352,7 @@ function installBun(platform, dst) {
|
|
|
352
352
|
write(join(cwd, "package.json"), "{}");
|
|
353
353
|
let { exitCode } = spawn(
|
|
354
354
|
"npm",
|
|
355
|
-
["install", "--loglevel=error", "--prefer-offline", "--no-audit", "--progress=false", `${module2}@1.0.
|
|
355
|
+
["install", "--loglevel=error", "--prefer-offline", "--no-audit", "--progress=false", `${module2}@1.0.27`],
|
|
356
356
|
{
|
|
357
357
|
cwd,
|
|
358
358
|
stdio: "pipe",
|
|
@@ -373,7 +373,7 @@ function installBun(platform, dst) {
|
|
|
373
373
|
__name(installBun, "installBun");
|
|
374
374
|
function downloadBun(platform, dst) {
|
|
375
375
|
return __async(this, null, function* () {
|
|
376
|
-
let tgz = yield (yield fetch(`https://registry.npmjs.org/@oven/${platform.bin}/-/${platform.bin}-1.0.
|
|
376
|
+
let tgz = yield (yield fetch(`https://registry.npmjs.org/@oven/${platform.bin}/-/${platform.bin}-1.0.27.tgz`)).arrayBuffer(), buffer;
|
|
377
377
|
try {
|
|
378
378
|
buffer = (0, import_zlib.unzipSync)(tgz);
|
|
379
379
|
} catch (cause) {
|
package/install.js
CHANGED
|
@@ -351,7 +351,7 @@ function installBun(platform, dst) {
|
|
|
351
351
|
write(join(cwd, "package.json"), "{}");
|
|
352
352
|
let { exitCode } = spawn(
|
|
353
353
|
"npm",
|
|
354
|
-
["install", "--loglevel=error", "--prefer-offline", "--no-audit", "--progress=false", `${module2}@1.0.
|
|
354
|
+
["install", "--loglevel=error", "--prefer-offline", "--no-audit", "--progress=false", `${module2}@1.0.27`],
|
|
355
355
|
{
|
|
356
356
|
cwd,
|
|
357
357
|
stdio: "pipe",
|
|
@@ -372,7 +372,7 @@ function installBun(platform, dst) {
|
|
|
372
372
|
__name(installBun, "installBun");
|
|
373
373
|
function downloadBun(platform, dst) {
|
|
374
374
|
return __async(this, null, function* () {
|
|
375
|
-
let tgz = yield (yield fetch(`https://registry.npmjs.org/@oven/${platform.bin}/-/${platform.bin}-1.0.
|
|
375
|
+
let tgz = yield (yield fetch(`https://registry.npmjs.org/@oven/${platform.bin}/-/${platform.bin}-1.0.27.tgz`)).arrayBuffer(), buffer;
|
|
376
376
|
try {
|
|
377
377
|
buffer = (0, import_zlib.unzipSync)(tgz);
|
|
378
378
|
} catch (cause) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "bun",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.27",
|
|
4
4
|
"description": "Bun is a fast all-in-one JavaScript runtime.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"bun",
|
|
@@ -24,12 +24,12 @@
|
|
|
24
24
|
"postinstall": "node install.js"
|
|
25
25
|
},
|
|
26
26
|
"optionalDependencies": {
|
|
27
|
-
"@oven/bun-darwin-aarch64": "1.0.
|
|
28
|
-
"@oven/bun-darwin-x64": "1.0.
|
|
29
|
-
"@oven/bun-darwin-x64-baseline": "1.0.
|
|
30
|
-
"@oven/bun-linux-aarch64": "1.0.
|
|
31
|
-
"@oven/bun-linux-x64": "1.0.
|
|
32
|
-
"@oven/bun-linux-x64-baseline": "1.0.
|
|
27
|
+
"@oven/bun-darwin-aarch64": "1.0.27",
|
|
28
|
+
"@oven/bun-darwin-x64": "1.0.27",
|
|
29
|
+
"@oven/bun-darwin-x64-baseline": "1.0.27",
|
|
30
|
+
"@oven/bun-linux-aarch64": "1.0.27",
|
|
31
|
+
"@oven/bun-linux-x64": "1.0.27",
|
|
32
|
+
"@oven/bun-linux-x64-baseline": "1.0.27"
|
|
33
33
|
},
|
|
34
34
|
"os": [
|
|
35
35
|
"darwin",
|