From 9ce27c8e3e55d7a1c31803fbfe90ade8bccf6c1a Mon Sep 17 00:00:00 2001 From: Evan Wallace Date: Wed, 6 Apr 2022 00:46:20 -0400 Subject: [PATCH] fix #2156: linux arm64 support for deno --- CHANGELOG.md | 6 ++++++ lib/deno/mod.ts | 1 + 2 files changed, 7 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7c27fdd08e..ee107ed536 100644 --- a/CHANGELOG.md +++ b/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)) diff --git a/lib/deno/mod.ts b/lib/deno/mod.ts index 94b1dda886..a0eed9f226 100644 --- a/lib/deno/mod.ts +++ b/lib/deno/mod.ts @@ -146,6 +146,7 @@ async function install(): Promise { } const knownUnixlikePackages: Record = { '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', }