forked from Postcatlab/postcat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
electron-builder.json
44 lines (44 loc) · 904 Bytes
/
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
{
"asar": true,
"directories": {
"output": "release/"
},
"files": [
"src/app/**/*.js*",
"src/platform/**/*.js*",
"src/shared/**/*.js*",
"**/*/browser/dist/**/*",
"**/*/node/dist/**/*",
"src/workbench/node/",
"src/core/**/package.json",
"src/app/common/**/*",
"!**/*.ts"
],
"publish": ["github"],
"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",
"target": ["default"]
},
"linux": {
"icon": "src/app/common/images/",
"target": ["AppImage"]
}
}