Skip to content

Commit

Permalink
missed two esbuild-linux-loong64 names
Browse files Browse the repository at this point in the history
  • Loading branch information
evanw committed Aug 2, 2022
1 parent 39eccb8 commit adbb475
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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:/evanw/esbuild/issues/2424))
Expand Down
2 changes: 1 addition & 1 deletion lib/npm/node-platform.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export const knownUnixlikePackages: Record<string, string> = {
'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',
Expand Down
2 changes: 1 addition & 1 deletion npm/esbuild/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit adbb475

Please sign in to comment.