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.
Files changed (2) hide show
  1. package/install.js +2 -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.10`],
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.10.tgz`)).arrayBuffer(), buffer;
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.10",
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",
10
- "@oven/bun-darwin-x64": "1.3.10",
11
- "@oven/bun-darwin-x64-baseline": "1.3.10",
12
- "@oven/bun-linux-aarch64": "1.3.10",
13
- "@oven/bun-linux-x64": "1.3.10",
14
- "@oven/bun-linux-x64-baseline": "1.3.10",
15
- "@oven/bun-linux-aarch64-musl": "1.3.10",
16
- "@oven/bun-linux-x64-musl": "1.3.10",
17
- "@oven/bun-linux-x64-musl-baseline": "1.3.10",
18
- "@oven/bun-windows-x64": "1.3.10",
19
- "@oven/bun-windows-x64-baseline": "1.3.10",
20
- "@oven/bun-windows-aarch64": "1.3.10"
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",