diff --git a/CHANGELOG.md b/CHANGELOG.md index 9120a451ffe..d86e5579f4d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## 0.14.53 + +This release fixes a minor issue with the previous release: I had to rename the package `esbuild-linux-loong64` to `@esbuild/linux-loong64` in the contributed PR because someone registered the package name before I could claim it, and I missed a spot. Hopefully everything is working after this release. I plan to change all platform-specific package names to use the `@esbuild/` scope at some point to avoid this problem in the future. + ## 0.14.52 * Allow binary data as input to the JS `transform` and `build` APIs ([#2424](https://github.com/evanw/esbuild/issues/2424)) diff --git a/lib/npm/node-platform.ts b/lib/npm/node-platform.ts index 90891df34ff..b32ad38bcdf 100644 --- a/lib/npm/node-platform.ts +++ b/lib/npm/node-platform.ts @@ -27,7 +27,7 @@ export const knownUnixlikePackages: Record = { 'linux riscv64 LE': 'esbuild-linux-riscv64', 'linux s390x BE': 'esbuild-linux-s390x', 'linux x64 LE': 'esbuild-linux-64', - 'linux loong64 LE': 'esbuild-linux-loong64', + 'linux loong64 LE': '@esbuild/linux-loong64', 'netbsd x64 LE': 'esbuild-netbsd-64', 'openbsd x64 LE': 'esbuild-openbsd-64', 'sunos x64 LE': 'esbuild-sunos-64', diff --git a/npm/esbuild/package.json b/npm/esbuild/package.json index 12df128020c..87e20184061 100644 --- a/npm/esbuild/package.json +++ b/npm/esbuild/package.json @@ -25,7 +25,7 @@ "esbuild-linux-64": "0.14.52", "esbuild-linux-arm": "0.14.52", "esbuild-linux-arm64": "0.14.52", - "esbuild-linux-loong64": "0.14.52", + "@esbuild/linux-loong64": "0.14.52", "esbuild-linux-mips64le": "0.14.52", "esbuild-linux-ppc64le": "0.14.52", "esbuild-linux-riscv64": "0.14.52",