Skip to content

Commit

Permalink
fix #2156: linux arm64 support for deno
Browse files Browse the repository at this point in the history
  • Loading branch information
evanw committed Apr 6, 2022
1 parent 5829301 commit 9ce27c8
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
@@ -1,5 +1,11 @@
# Changelog

## Unreleased

* Add Linux ARM64 support for Deno ([#2156](https://github.com/evanw/esbuild/issues/2156))

This release adds Linux ARM64 support to esbuild's [Deno](https://deno.land/) API implementation, which allows esbuild to be used with Deno on a Raspberry Pi.

## 0.14.32

* Fix `super` usage in lowered private methods ([#2039](https://github.com/evanw/esbuild/issues/2039))
Expand Down
1 change: 1 addition & 0 deletions lib/deno/mod.ts
Expand Up @@ -146,6 +146,7 @@ async function install(): Promise<string> {
}
const knownUnixlikePackages: Record<string, string> = {
'aarch64-apple-darwin': 'esbuild-darwin-arm64',
'aarch64-unknown-linux-gnu': 'esbuild-linux-arm64',
'x86_64-apple-darwin': 'esbuild-darwin-64',
'x86_64-unknown-linux-gnu': 'esbuild-linux-64',
}
Expand Down

0 comments on commit 9ce27c8

Please sign in to comment.