From 8585c515f74061742c0b11396cb825d8f7cfe664 Mon Sep 17 00:00:00 2001 From: Alex Urbina Date: Mon, 7 Oct 2024 13:44:13 -0600 Subject: [PATCH] BRE-284 ADD: Scripts for Linux ARM64 target --- apps/cli/package.json | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/apps/cli/package.json b/apps/cli/package.json index 759fb14ba5a..8cfb600d904 100644 --- a/apps/cli/package.json +++ b/apps/cli/package.json @@ -33,15 +33,19 @@ "dist:oss:win": "npm run build:oss:prod && npm run clean && npm run package:oss:win", "dist:oss:mac": "npm run build:oss:prod && npm run clean && npm run package:oss:mac", "dist:oss:lin": "npm run build:oss:prod && npm run clean && npm run package:oss:lin", + "dist:oss:lin-arm64": "npm run build:oss:prod && npm run clean && npm run package:oss:lin-arm64", "dist:bit:win": "npm run build:bit:prod && npm run clean && npm run package:bit:win", "dist:bit:mac": "npm run build:bit:prod && npm run clean && npm run package:bit:mac", "dist:bit:lin": "npm run build:bit:prod && npm run clean && npm run package:bit:lin", + "dist:bit:lin-arm64": "npm run build:bit:prod && npm run clean && npm run package:bit:lin-arm64", "package:oss:win": "pkg . --targets win-x64 --output ./dist/oss/windows/bw.exe", "package:oss:mac": "pkg . --targets macos-x64 --output ./dist/oss/macos/bw", "package:oss:lin": "pkg . --targets linux-x64 --output ./dist/oss/linux/bw", + "package:oss:lin-arm64": "pkg . --targets linux-arm64 --output ./dist/oss/linux/bw", "package:bit:win": "pkg . --targets win-x64 --output ./dist/bit/windows/bw.exe", "package:bit:mac": "pkg . --targets macos-x64 --output ./dist/bit/macos/bw", "package:bit:lin": "pkg . --targets linux-x64 --output ./dist/bit/linux/bw", + "package:bit:lin-arm64": "pkg . --targets linux-arm64 --output ./dist/bit/linux/bw", "test": "jest", "test:watch": "jest --watch", "test:watch:all": "jest --watchAll"