From 6b47bc0b43372c019e2ee3627eb29b00615c193a Mon Sep 17 00:00:00 2001 From: yougotwill Date: Fri, 24 Jan 2025 13:30:42 +1100 Subject: [PATCH] feat: separate macos build targets --- package.json | 26 ++++++++++++++++++++++++-- 1 file changed, 24 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 8936098a1..2cb833beb 100644 --- a/package.json +++ b/package.json @@ -227,8 +227,30 @@ "category": "public.app-category.social-networking", "icon": "build/icon-mac.icns", "target": [ - "dmg", - "zip" + { + "target": "dmg", + "arch": [ + "arm64" + ] + }, + { + "target": "zip", + "arch": [ + "arm64" + ] + }, + { + "target": "dmg", + "arch": [ + "x64" + ] + }, + { + "target": "zip", + "arch": [ + "x64" + ] + } ], "bundleVersion": "1", "hardenedRuntime": true,