forked from sigp/siren
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathforge.config.js
More file actions
32 lines (31 loc) · 826 Bytes
/
forge.config.js
File metadata and controls
32 lines (31 loc) · 826 Bytes
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
// eslint-disable-next-line no-undef,@typescript-eslint/no-var-requires
require('dotenv').config()
// eslint-disable-next-line no-undef
module.exports = {
packagerConfig: {
icon: 'src/assets/images/sigma', // no file extension required
osxSign: {},
osxNotarize: {
tool: 'notarytool',
// eslint-disable-next-line no-undef
appleId: process.env.APPLE_ID,
// eslint-disable-next-line no-undef
appleIdPassword: process.env.APPLE_PASSWORD,
// eslint-disable-next-line no-undef
teamId: process.env.APPLE_TEAM_ID,
},
},
rebuildConfig: {},
makers: [
{
name: '@electron-forge/maker-zip',
platforms: ['darwin', 'mas', 'win32', 'linux'],
},
{
name: '@electron-forge/maker-dmg',
config: {
format: 'ULFO',
},
},
],
}