From b2533be3f6a8928d584f7d5943403147c4936bca Mon Sep 17 00:00:00 2001 From: Arjun <6592213+arkml@users.noreply.github.com> Date: Mon, 30 Mar 2026 11:05:16 +0530 Subject: [PATCH] fixed forge file --- apps/x/apps/main/forge.config.cjs | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/apps/x/apps/main/forge.config.cjs b/apps/x/apps/main/forge.config.cjs index 120c96b1..c79a8c43 100644 --- a/apps/x/apps/main/forge.config.cjs +++ b/apps/x/apps/main/forge.config.cjs @@ -11,18 +11,18 @@ module.exports = { icon: './icons/icon', // .icns extension added automatically appBundleId: 'com.rowboat.app', appCategoryType: 'public.app-category.productivity', - // osxSign: { - // batchCodesignCalls: true, - // optionsForFile: () => ({ - // entitlements: path.join(__dirname, 'entitlements.plist'), - // 'entitlements-inherit': path.join(__dirname, 'entitlements.plist'), - // }), - // }, - // osxNotarize: { - // appleId: process.env.APPLE_ID, - // appleIdPassword: process.env.APPLE_PASSWORD, - // teamId: process.env.APPLE_TEAM_ID - // }, + osxSign: { + batchCodesignCalls: true, + optionsForFile: () => ({ + entitlements: path.join(__dirname, 'entitlements.plist'), + 'entitlements-inherit': path.join(__dirname, 'entitlements.plist'), + }), + }, + osxNotarize: { + appleId: process.env.APPLE_ID, + appleIdPassword: process.env.APPLE_PASSWORD, + teamId: process.env.APPLE_TEAM_ID + }, // Since we bundle everything with esbuild, we don't need node_modules at all. // These settings prevent Forge's dependency walker (flora-colossus) from trying // to analyze/copy node_modules, which fails with pnpm's symlinked workspaces.