Skip to content

Commit adbb475

Browse files
committed
missed two esbuild-linux-loong64 names
1 parent 39eccb8 commit adbb475

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## 0.14.53
4+
5+
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.
6+
37
## 0.14.52
48

59
* Allow binary data as input to the JS `transform` and `build` APIs ([#2424](https://github.com/evanw/esbuild/issues/2424))

lib/npm/node-platform.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ export const knownUnixlikePackages: Record<string, string> = {
2727
'linux riscv64 LE': 'esbuild-linux-riscv64',
2828
'linux s390x BE': 'esbuild-linux-s390x',
2929
'linux x64 LE': 'esbuild-linux-64',
30-
'linux loong64 LE': 'esbuild-linux-loong64',
30+
'linux loong64 LE': '@esbuild/linux-loong64',
3131
'netbsd x64 LE': 'esbuild-netbsd-64',
3232
'openbsd x64 LE': 'esbuild-openbsd-64',
3333
'sunos x64 LE': 'esbuild-sunos-64',

npm/esbuild/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
"esbuild-linux-64": "0.14.52",
2626
"esbuild-linux-arm": "0.14.52",
2727
"esbuild-linux-arm64": "0.14.52",
28-
"esbuild-linux-loong64": "0.14.52",
28+
"@esbuild/linux-loong64": "0.14.52",
2929
"esbuild-linux-mips64le": "0.14.52",
3030
"esbuild-linux-ppc64le": "0.14.52",
3131
"esbuild-linux-riscv64": "0.14.52",

0 commit comments

Comments
 (0)