forked from Postcatlab/postcat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathelectron-builder.json
61 lines (61 loc) · 1.31 KB
/
electron-builder.json
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
54
55
56
57
58
59
60
61
{
"appId": ".eolinker.com",
"asar": true,
"directories": {
"output": "release/"
},
"files": [
"out/app/**/*.js*",
"out/platform/**/*.js*",
"out/enviroment.js",
"out/shared/**/*.js*",
"**/*/browser/dist/**/*",
"**/*/node/dist/**/*",
"out/workbench/browser/src/**/*.js*",
"out/workbench/node/**/*.js*",
"out/core/**/package.json",
"out/app/common/**/*",
"!**/*.ts"
],
"publish": [
"github",
{
"provider": "generic",
"url": "https://packages.eoapi.io"
}
],
"generateUpdatesFilesForAllChannels": true,
"nsis": {
"oneClick": false,
"allowElevation": true,
"allowToChangeInstallationDirectory": true
},
"win": {
"icon": "src/app/common/images/256x256.png",
"target": [
{
"target": "nsis"
},
"portable"
]
},
"portable": {
"splashImage": "src/app/common/images/eoapi.bmp"
},
"mac": {
"icon": "src/app/common/images/512x512.png",
"hardenedRuntime": true,
"gatekeeperAssess": false,
"entitlements": "build/entitlements.mac.plist",
"entitlementsInherit": "build/entitlements.mac.plist",
"target": ["dmg", "zip"]
},
"dmg": {
"sign": false
},
"afterSign": "build/notarize.js",
"linux": {
"icon": "src/app/common/images/",
"target": ["AppImage"]
}
}