-
Notifications
You must be signed in to change notification settings - Fork 0
/
forge.config.ts
53 lines (50 loc) · 1.3 KB
/
forge.config.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
import type { ForgeConfig } from '@electron-forge/shared-types';
import { MakerZIP } from '@electron-forge/maker-zip';
import { MakerDMG } from '@electron-forge/maker-dmg';
import { WebpackPlugin } from '@electron-forge/plugin-webpack';
import { mainConfig } from './webpack.main.config';
import { rendererConfig } from './webpack.renderer.config';
const config: ForgeConfig = {
packagerConfig: {
icon: './assets/icon',
osxSign: {
identity: 'Developer ID Application',
optionsForFile: (filePath) => {
return {
entitlements: 'config/darwin.plist',
}
},
},
osxNotarize: {
appleId: process.env.APPLE_ID || '',
appleIdPassword: process.env.APPLE_APP_PASSWORD || '',
teamId: process.env.APPLE_TEAM_ID || '',
},
},
rebuildConfig: {},
makers: [
new MakerZIP({}, ['darwin']),
new MakerDMG({
format: 'ULFO',
}, ['darwin']),
],
plugins: [
new WebpackPlugin({
mainConfig,
renderer: {
config: rendererConfig,
entryPoints: [
{
html: './src/index.html',
js: './src/renderer.ts',
name: 'main_window',
preload: {
js: './src/main/preload.ts',
},
},
],
},
}),
],
};
export default config;