bun 1.0.21 → 1.0.22

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.
Files changed (3) hide show
  1. package/bin/bun +2 -2
  2. package/install.js +2 -2
  3. 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.21`],
355
+ ["install", "--loglevel=error", "--prefer-offline", "--no-audit", "--progress=false", `${module2}@1.0.22`],
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.21.tgz`)).arrayBuffer(), buffer;
376
+ let tgz = yield (yield fetch(`https://registry.npmjs.org/@oven/${platform.bin}/-/${platform.bin}-1.0.22.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.21`],
354
+ ["install", "--loglevel=error", "--prefer-offline", "--no-audit", "--progress=false", `${module2}@1.0.22`],
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.21.tgz`)).arrayBuffer(), buffer;
375
+ let tgz = yield (yield fetch(`https://registry.npmjs.org/@oven/${platform.bin}/-/${platform.bin}-1.0.22.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.21",
3
+ "version": "1.0.22",
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.21",
28
- "@oven/bun-darwin-x64": "1.0.21",
29
- "@oven/bun-darwin-x64-baseline": "1.0.21",
30
- "@oven/bun-linux-aarch64": "1.0.21",
31
- "@oven/bun-linux-x64": "1.0.21",
32
- "@oven/bun-linux-x64-baseline": "1.0.21"
27
+ "@oven/bun-darwin-aarch64": "1.0.22",
28
+ "@oven/bun-darwin-x64": "1.0.22",
29
+ "@oven/bun-darwin-x64-baseline": "1.0.22",
30
+ "@oven/bun-linux-aarch64": "1.0.22",
31
+ "@oven/bun-linux-x64": "1.0.22",
32
+ "@oven/bun-linux-x64-baseline": "1.0.22"
33
33
  },
34
34
  "os": [
35
35
  "darwin",