-
Notifications
You must be signed in to change notification settings - Fork 0
/
electron-builder.json
60 lines (60 loc) · 1.09 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
{
"productName": "Polyonic",
"directories": {
"buildResources": "./resources/electron",
"output": "release/"
},
"files": [
"**/*",
"!*.ts",
"!*.code-workspace",
"!LICENSE.md",
"!package.json",
"!package-lock.json",
"!config/",
"!platforms/",
"!plugins/",
"!src/",
"!e2e/",
"!hooks/",
"!.angular-cli.json",
"!_config.yml",
"!karma.conf.js",
"!tsconfig.json",
"!tslint.json",
"!app.db/",
"!release/",
"!resources/"
],
"win": {
"icon": "resources/electron/windows/icon.ico",
"target": [
"portable"
]
},
"squirrelWindows": {
"msi":"true"
},
"msi" : {
"warningsAsErrors": false
},
"nsis" : {
"oneClick": false,
"allowToChangeInstallationDirectory": true
},
"appx": {
"publisherDisplayName":"Polyonic"
},
"mac": {
"icon": "resources/electron/osx/icon.icns",
"target": [
"dmg"
]
},
"linux": {
"icon": "dist",
"target": [
"AppImage"
]
}
}