-
Notifications
You must be signed in to change notification settings - Fork 0
/
electron-builder.json
52 lines (52 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
{
"appId": "com.paul-roman.vitrine",
"productName": "Vitrine",
"win": {
"target": "nsis",
"icon": "sources/client/resources/images/vitrine.ico",
"publish": [ "github" ]
},
"linux": {
"target": "tar.gz",
"icon": "sources/client/resources/images/vitrine.png",
"category": "Utility",
"artifactName": "${productName}_${version}.${ext}",
"publish": [ "github" ]
},
"nsis": {
"oneClick": false,
"multiLanguageInstaller": true,
"artifactName": "${productName}_${version}_Setup.${ext}"
},
"files": [
"!.github",
"!.idea",
"!.nyc_output",
"!coverage",
"!games",
"!node_modules",
"!scripts",
"!sources",
"!test",
"!webpack",
"!.gitignore",
"!.grenrc.json",
"!.travis.yml",
"!appveyor.yml",
"!AUTHORS.md",
"!CHANGELOG.md",
"!LICENSE.md",
"!README.md",
"!tsconfig.json",
"!tslint.json",
"!vitrine.log.html",
"!yarn.lock",
"!yarn-error.log"
],
"extraResources": [
"config/lang",
"config/modules_config.json",
"modules/*.node",
"*app-update.yml"
]
}