-
Notifications
You must be signed in to change notification settings - Fork 6
/
forge.config.js
44 lines (43 loc) · 1012 Bytes
/
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
module.exports = {
"packagerConfig": {
"icon": "static/icon.icns",
"osxSign": {
"entitlements": "static/entitlements.plist",
"entitlements-inherit": "static/entitlements.plist",
"gatekeeper-assess": false,
"hardenedRuntime": true,
"identity": "Developer ID Application: Matthew Conlen (9NELR4LFNY)"
},
"osxNotarize": {
"appleId": process.env['APPLE_ID'],
"appleIdPassword": process.env['APPLE_ID_PASSWORD']
}
},
"makers": [
{
"name": "@electron-forge/maker-squirrel",
"config": {
"name": "idyll_studio",
"setupIcon": "static/icon.ico",
"iconUrl": "https://static/icon.png"
}
},
{
"name": "@electron-forge/maker-zip",
"platforms": [
"darwin"
],
"config": {
"name": "Idyll Studio"
}
},
{
"name": "@electron-forge/maker-deb",
"config": {}
},
{
"name": "@electron-forge/maker-rpm",
"config": {}
}
]
}