bun 1.1.30 → 1.1.32

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 (2) hide show
  1. package/install.js +2 -2
  2. package/package.json +9 -9
package/install.js CHANGED
@@ -376,7 +376,7 @@ function installBun(platform, dst) {
376
376
  write(join(cwd, "package.json"), "{}");
377
377
  let { exitCode } = spawn(
378
378
  "npm",
379
- ["install", "--loglevel=error", "--prefer-offline", "--no-audit", "--progress=false", `${module2}@1.1.30`],
379
+ ["install", "--loglevel=error", "--prefer-offline", "--no-audit", "--progress=false", `${module2}@1.1.32`],
380
380
  {
381
381
  cwd,
382
382
  stdio: "pipe",
@@ -397,7 +397,7 @@ function installBun(platform, dst) {
397
397
  __name(installBun, "installBun");
398
398
  function downloadBun(platform, dst) {
399
399
  return __async(this, null, function* () {
400
- let tgz = yield (yield fetch(`https://registry.npmjs.org/@oven/${platform.bin}/-/${platform.bin}-1.1.30.tgz`)).arrayBuffer(), buffer;
400
+ let tgz = yield (yield fetch(`https://registry.npmjs.org/@oven/${platform.bin}/-/${platform.bin}-1.1.32.tgz`)).arrayBuffer(), buffer;
401
401
  try {
402
402
  buffer = (0, import_zlib.unzipSync)(tgz);
403
403
  } catch (cause) {
package/package.json CHANGED
@@ -1,19 +1,19 @@
1
1
  {
2
2
  "name": "bun",
3
3
  "description": "Bun is a fast all-in-one JavaScript runtime.",
4
- "version": "1.1.30",
4
+ "version": "1.1.32",
5
5
  "scripts": {
6
6
  "postinstall": "node install.js"
7
7
  },
8
8
  "optionalDependencies": {
9
- "@oven/bun-darwin-aarch64": "1.1.30",
10
- "@oven/bun-darwin-x64": "1.1.30",
11
- "@oven/bun-darwin-x64-baseline": "1.1.30",
12
- "@oven/bun-linux-aarch64": "1.1.30",
13
- "@oven/bun-linux-x64": "1.1.30",
14
- "@oven/bun-linux-x64-baseline": "1.1.30",
15
- "@oven/bun-windows-x64": "1.1.30",
16
- "@oven/bun-windows-x64-baseline": "1.1.30"
9
+ "@oven/bun-darwin-aarch64": "1.1.32",
10
+ "@oven/bun-darwin-x64": "1.1.32",
11
+ "@oven/bun-darwin-x64-baseline": "1.1.32",
12
+ "@oven/bun-linux-aarch64": "1.1.32",
13
+ "@oven/bun-linux-x64": "1.1.32",
14
+ "@oven/bun-linux-x64-baseline": "1.1.32",
15
+ "@oven/bun-windows-x64": "1.1.32",
16
+ "@oven/bun-windows-x64-baseline": "1.1.32"
17
17
  },
18
18
  "bin": {
19
19
  "bun": "bin/bun.exe",