fix(npm): android only supports arm64 in goreleaser

The test incorrectly listed x64 as a supported arch for android, but
goreleaser only builds arm64 for android/termux.
This commit is contained in:
emma
2026-01-05 20:06:51 -08:00
committed by Steve Yegge
parent 2a579a539b
commit 1c8a88447b

View File

@@ -371,7 +371,7 @@ async function testPlatformDetection() {
const supportedPlatforms = {
darwin: ['x64', 'arm64'],
linux: ['x64', 'arm64'],
android: ['x64', 'arm64'],
android: ['arm64'], // Only arm64 built for android/termux
win32: ['x64', 'arm64']
};