fixed forge file

This commit is contained in:
Arjun 2026-03-30 11:05:16 +05:30
parent 7fa251dbcb
commit b2533be3f6

View file

@ -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.