From 4acac04450ff2fd4e0a6aaf70015a0c8f19c8967 Mon Sep 17 00:00:00 2001 From: Josh Miller Date: Tue, 14 May 2024 12:27:46 +0100 Subject: [PATCH] chore: Update build.js to include x64 and arm64 architectures for Mac target --- build.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/build.js b/build.js index 79576fb5..4eb52760 100644 --- a/build.js +++ b/build.js @@ -21,9 +21,10 @@ const main = async () => { cscKeyPassword: process.env.CSC_KEY_PASSWORD, cscLink: process.env.CSC_LINK, mac: { - target: [ + target: [, { - arch: ['arm64', 'x64'], + target: 'default', + arch: ['x64','arm64'], }, ], publish: publishOptions,