Skip to content

Commit 085265a

Browse files
committedSep 22, 2022
publish 0.15.9 to npm
1 parent f84de90 commit 085265a

File tree

27 files changed

+50
-50
lines changed

27 files changed

+50
-50
lines changed
 

‎CHANGELOG.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
# Changelog
22

3-
## Unreleased
3+
## 0.15.9
44

55
* Fix an obscure npm package installation issue with `--omit=optional` ([#2558](https://github.com/evanw/esbuild/issues/2558))
66

77
The previous release introduced a regression with `npm install esbuild --omit=optional` where the file `node_modules/.bin/esbuild` would no longer be present after installation. That could cause any package scripts which used the `esbuild` command to no longer work. This release fixes the regression so `node_modules/.bin/esbuild` should now be present again after installation. This regression only affected people installing esbuild using `npm` with either the `--omit=optional` or `--no-optional` flag, which is a somewhat unusual situation.
88

9-
More details:
9+
**More details:**
1010

1111
The reason for this regression is due to some obscure npm implementation details. Since the Go compiler doesn't support trivial cross-compiling on certain Android platforms, esbuild's installer installs a WebAssembly shim on those platforms instead. In the previous release I attempted to simplify esbuild's WebAssembly shims to depend on the `esbuild-wasm` package instead of including another whole copy of the WebAssembly binary (to make publishing faster and to save on file system space after installation). However, both the `esbuild` package and the `esbuild-wasm` package provide a binary called `esbuild` and it turns out that adding `esbuild-wasm` as a nested dependency of the `esbuild` package (specifically `esbuild` optionally depends on `@esbuild/android-arm` which depends on `esbuild-wasm`) caused npm to be confused about what `node_modules/.bin/esbuild` is supposed to be.
1212

‎cmd/esbuild/version.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
package main
22

3-
const esbuildVersion = "0.15.8"
3+
const esbuildVersion = "0.15.9"

‎npm/@esbuild/android-arm/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@esbuild/android-arm",
3-
"version": "0.15.8",
3+
"version": "0.15.9",
44
"description": "A WebAssembly shim for esbuild on Android ARM.",
55
"repository": "https://github.com/evanw/esbuild",
66
"license": "MIT",

‎npm/@esbuild/linux-loong64/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@esbuild/linux-loong64",
3-
"version": "0.15.8",
3+
"version": "0.15.9",
44
"description": "The Linux LoongArch 64-bit binary for esbuild, a JavaScript bundler.",
55
"repository": "https://github.com/evanw/esbuild",
66
"license": "MIT",

‎npm/esbuild-android-64/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "esbuild-android-64",
3-
"version": "0.15.8",
3+
"version": "0.15.9",
44
"description": "A WebAssembly shim for esbuild on Android x64.",
55
"repository": "https://github.com/evanw/esbuild",
66
"license": "MIT",

‎npm/esbuild-android-arm64/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "esbuild-android-arm64",
3-
"version": "0.15.8",
3+
"version": "0.15.9",
44
"description": "The Android ARM 64-bit binary for esbuild, a JavaScript bundler.",
55
"repository": "https://github.com/evanw/esbuild",
66
"license": "MIT",

‎npm/esbuild-darwin-64/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "esbuild-darwin-64",
3-
"version": "0.15.8",
3+
"version": "0.15.9",
44
"description": "The macOS 64-bit binary for esbuild, a JavaScript bundler.",
55
"repository": "https://github.com/evanw/esbuild",
66
"license": "MIT",

‎npm/esbuild-darwin-arm64/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "esbuild-darwin-arm64",
3-
"version": "0.15.8",
3+
"version": "0.15.9",
44
"description": "The macOS ARM 64-bit binary for esbuild, a JavaScript bundler.",
55
"repository": "https://github.com/evanw/esbuild",
66
"license": "MIT",

‎npm/esbuild-freebsd-64/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "esbuild-freebsd-64",
3-
"version": "0.15.8",
3+
"version": "0.15.9",
44
"description": "The FreeBSD 64-bit binary for esbuild, a JavaScript bundler.",
55
"repository": "https://github.com/evanw/esbuild",
66
"license": "MIT",

‎npm/esbuild-freebsd-arm64/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "esbuild-freebsd-arm64",
3-
"version": "0.15.8",
3+
"version": "0.15.9",
44
"description": "The FreeBSD ARM 64-bit binary for esbuild, a JavaScript bundler.",
55
"repository": "https://github.com/evanw/esbuild",
66
"license": "MIT",

‎npm/esbuild-linux-32/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "esbuild-linux-32",
3-
"version": "0.15.8",
3+
"version": "0.15.9",
44
"description": "The Linux 32-bit binary for esbuild, a JavaScript bundler.",
55
"repository": "https://github.com/evanw/esbuild",
66
"license": "MIT",

‎npm/esbuild-linux-64/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "esbuild-linux-64",
3-
"version": "0.15.8",
3+
"version": "0.15.9",
44
"description": "The Linux 64-bit binary for esbuild, a JavaScript bundler.",
55
"repository": "https://github.com/evanw/esbuild",
66
"license": "MIT",

‎npm/esbuild-linux-arm/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "esbuild-linux-arm",
3-
"version": "0.15.8",
3+
"version": "0.15.9",
44
"description": "The Linux ARM binary for esbuild, a JavaScript bundler.",
55
"repository": "https://github.com/evanw/esbuild",
66
"license": "MIT",

‎npm/esbuild-linux-arm64/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "esbuild-linux-arm64",
3-
"version": "0.15.8",
3+
"version": "0.15.9",
44
"description": "The Linux ARM 64-bit binary for esbuild, a JavaScript bundler.",
55
"repository": "https://github.com/evanw/esbuild",
66
"license": "MIT",

‎npm/esbuild-linux-mips64le/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "esbuild-linux-mips64le",
3-
"version": "0.15.8",
3+
"version": "0.15.9",
44
"description": "The Linux MIPS 64-bit Little Endian binary for esbuild, a JavaScript bundler.",
55
"repository": "https://github.com/evanw/esbuild",
66
"license": "MIT",

‎npm/esbuild-linux-ppc64le/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "esbuild-linux-ppc64le",
3-
"version": "0.15.8",
3+
"version": "0.15.9",
44
"description": "The Linux PowerPC 64-bit Little Endian binary for esbuild, a JavaScript bundler.",
55
"repository": "https://github.com/evanw/esbuild",
66
"license": "MIT",

‎npm/esbuild-linux-riscv64/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "esbuild-linux-riscv64",
3-
"version": "0.15.8",
3+
"version": "0.15.9",
44
"description": "The Linux RISC-V 64-bit binary for esbuild, a JavaScript bundler.",
55
"repository": "https://github.com/evanw/esbuild",
66
"license": "MIT",

‎npm/esbuild-linux-s390x/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "esbuild-linux-s390x",
3-
"version": "0.15.8",
3+
"version": "0.15.9",
44
"description": "The Linux IBM Z 64-bit Big Endian binary for esbuild, a JavaScript bundler.",
55
"repository": "https://github.com/evanw/esbuild",
66
"license": "MIT",

‎npm/esbuild-netbsd-64/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "esbuild-netbsd-64",
3-
"version": "0.15.8",
3+
"version": "0.15.9",
44
"description": "The NetBSD AMD64 binary for esbuild, a JavaScript bundler.",
55
"repository": "https://github.com/evanw/esbuild",
66
"license": "MIT",

‎npm/esbuild-openbsd-64/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "esbuild-openbsd-64",
3-
"version": "0.15.8",
3+
"version": "0.15.9",
44
"description": "The OpenBSD 64-bit binary for esbuild, a JavaScript bundler.",
55
"repository": "https://github.com/evanw/esbuild",
66
"license": "MIT",

‎npm/esbuild-sunos-64/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "esbuild-sunos-64",
3-
"version": "0.15.8",
3+
"version": "0.15.9",
44
"description": "The illumos 64-bit binary for esbuild, a JavaScript bundler.",
55
"repository": "https://github.com/evanw/esbuild",
66
"license": "MIT",

‎npm/esbuild-wasm/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "esbuild-wasm",
3-
"version": "0.15.8",
3+
"version": "0.15.9",
44
"description": "The cross-platform WebAssembly binary for esbuild, a JavaScript bundler.",
55
"repository": "https://github.com/evanw/esbuild",
66
"license": "MIT",

‎npm/esbuild-windows-32/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "esbuild-windows-32",
3-
"version": "0.15.8",
3+
"version": "0.15.9",
44
"description": "The Windows 32-bit binary for esbuild, a JavaScript bundler.",
55
"repository": "https://github.com/evanw/esbuild",
66
"license": "MIT",

‎npm/esbuild-windows-64/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "esbuild-windows-64",
3-
"version": "0.15.8",
3+
"version": "0.15.9",
44
"description": "The Windows 64-bit binary for esbuild, a JavaScript bundler.",
55
"repository": "https://github.com/evanw/esbuild",
66
"license": "MIT",

‎npm/esbuild-windows-arm64/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "esbuild-windows-arm64",
3-
"version": "0.15.8",
3+
"version": "0.15.9",
44
"description": "The Windows ARM 64-bit binary for esbuild, a JavaScript bundler.",
55
"repository": "https://github.com/evanw/esbuild",
66
"license": "MIT",

‎npm/esbuild/package.json

+23-23
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "esbuild",
3-
"version": "0.15.8",
3+
"version": "0.15.9",
44
"description": "An extremely fast JavaScript and CSS bundler and minifier.",
55
"repository": "https://github.com/evanw/esbuild",
66
"scripts": {
@@ -15,28 +15,28 @@
1515
"esbuild": "bin/esbuild"
1616
},
1717
"optionalDependencies": {
18-
"@esbuild/android-arm": "0.15.8",
19-
"@esbuild/linux-loong64": "0.15.8",
20-
"esbuild-android-64": "0.15.8",
21-
"esbuild-android-arm64": "0.15.8",
22-
"esbuild-darwin-64": "0.15.8",
23-
"esbuild-darwin-arm64": "0.15.8",
24-
"esbuild-freebsd-64": "0.15.8",
25-
"esbuild-freebsd-arm64": "0.15.8",
26-
"esbuild-linux-32": "0.15.8",
27-
"esbuild-linux-64": "0.15.8",
28-
"esbuild-linux-arm": "0.15.8",
29-
"esbuild-linux-arm64": "0.15.8",
30-
"esbuild-linux-mips64le": "0.15.8",
31-
"esbuild-linux-ppc64le": "0.15.8",
32-
"esbuild-linux-riscv64": "0.15.8",
33-
"esbuild-linux-s390x": "0.15.8",
34-
"esbuild-netbsd-64": "0.15.8",
35-
"esbuild-openbsd-64": "0.15.8",
36-
"esbuild-sunos-64": "0.15.8",
37-
"esbuild-windows-32": "0.15.8",
38-
"esbuild-windows-64": "0.15.8",
39-
"esbuild-windows-arm64": "0.15.8"
18+
"@esbuild/android-arm": "0.15.9",
19+
"@esbuild/linux-loong64": "0.15.9",
20+
"esbuild-android-64": "0.15.9",
21+
"esbuild-android-arm64": "0.15.9",
22+
"esbuild-darwin-64": "0.15.9",
23+
"esbuild-darwin-arm64": "0.15.9",
24+
"esbuild-freebsd-64": "0.15.9",
25+
"esbuild-freebsd-arm64": "0.15.9",
26+
"esbuild-linux-32": "0.15.9",
27+
"esbuild-linux-64": "0.15.9",
28+
"esbuild-linux-arm": "0.15.9",
29+
"esbuild-linux-arm64": "0.15.9",
30+
"esbuild-linux-mips64le": "0.15.9",
31+
"esbuild-linux-ppc64le": "0.15.9",
32+
"esbuild-linux-riscv64": "0.15.9",
33+
"esbuild-linux-s390x": "0.15.9",
34+
"esbuild-netbsd-64": "0.15.9",
35+
"esbuild-openbsd-64": "0.15.9",
36+
"esbuild-sunos-64": "0.15.9",
37+
"esbuild-windows-32": "0.15.9",
38+
"esbuild-windows-64": "0.15.9",
39+
"esbuild-windows-arm64": "0.15.9"
4040
},
4141
"license": "MIT"
4242
}

‎version.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.15.8
1+
0.15.9

0 commit comments

Comments
 (0)
Please sign in to comment.