forked from SouthbankSoftware/dbkoda
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathelectron-builder-release.json
47 lines (47 loc) · 1.09 KB
/
electron-builder-release.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
{
"appId": "com.southbanksoftware.dbkoda",
"compression": "normal",
"npmRebuild": true,
"publish": [{
"provider": "s3",
"bucket": "updates.dbkoda"
}],
"files": ["assets", "!assets/controller/{bin,client,coverage,data,flow-typed,src,tests,.*,LICENSE,mocha.opts,README.md,yarn*}",
"lib", "!node_modules/@southbanksoftware"
],
"asarUnpack": [
"assets/controller/lib/all-in-one.js"
],
"mac": {
"category": "public.app-category.productivity",
"icon": "build/icons/mac/icon.icns"
},
"dmg": {
"background": "misc/dmgbackground.tiff",
"icon": "build/icons/mac/icon.icns",
"iconSize": 120,
"contents": [{
"x": 162,
"y": 302
}, {
"x": 540,
"y": 302,
"type": "link",
"path": "/Applications"
}]
},
"linux": {
"category": "Development",
"target": "AppImage",
"icon": "build/icons/png/"
},
"win": {
"target": "nsis",
"icon": "build/icons/win/icon.ico"
},
"nsis": {
"deleteAppDataOnUninstall": true,
"perMachine": true,
"artifactName": "${productName}-${version}.${ext}"
}
}