-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathforge.config.js
52 lines (49 loc) · 1.47 KB
/
forge.config.js
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
module.exports = {
packagerConfig: {
name:"Soundshed",
appBundleId:"com.soundshed.tones",
icon: "images/icon/favicon.ico",
usageDescription: {
Microphone:
'Microphone access may be required for some functionality such as tuner or guitar jam.',
},
appCategoryType: 'public.app-category.utilities',
ignore:[
".vscode",
"forge.config.js",
"secret.p12"
],
"osxSign": {
"identity": "Developer ID Application: Webprofusion Pty Ltd (2L7LP952XY)",
"hardened-runtime": true,
"entitlements": "entitlements.plist",
"entitlements-inherit": "entitlements.plist",
"signature-flags": "library",
"gatekeeper-assess": false
},
"osxNotarize": {
"appBundleId":"com.soundshed.tones",
"appleId": process.env.MACOS_APPLEID,
"appleIdPassword": process.env.MACOS_APP_SIGNING_PWD,
}
},
makers: [
{
name: "@electron-forge/maker-squirrel",
config: {
name: "soundshed",
certificateFile: process.env.WIN_CODE_SIGNING_P12,
certificatePassword: process.env.WIN_CODE_SIGNING_PWD,
loadingGif: "images/icon/loading-screen.gif",
iconUrl:"https://soundshed.com/favicon.ico",
setupIcon:"images/icon/favicon.ico"
}
},
{
name: "@electron-forge/maker-zip",
platforms: [
"darwin","linux"
]
}
]
}