-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathelectron-builder.json
73 lines (73 loc) · 1.75 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
62
63
64
65
66
67
68
69
70
71
72
73
{
"appId": "org.superalgos.platform",
"productName": "Superalgos",
"asar": true,
"asarUnpack": "**/Projects/Governance/Plugins/User-Profiles/*",
"generateUpdatesFilesForAllChannels": true,
"files": [
"**/*",
"!.github",
"!.vscode",
"!.dockerignore${/*}",
"!Platform/My-Data-Storage/*",
"!Platform/My-Log-Files/*",
"!Platform/My-Workspaces/*",
"!Docker",
"!Launch-Scripts",
"!run.js",
"!setup.js",
"!uninstall.js"
],
"win": {
"target": [
{
"target": "nsis",
"arch": "x64"
},
{
"target": "portable",
"arch": "x64"
}
],
"artifactName": "${productName}-${os}-${version}.${ext}",
"icon": "./build/superalgos.ico"
},
"publish": {
"provider": "github",
"vPrefixedTagName": false,
"releaseType": "prerelease"
},
"nsis": {
"oneClick": false,
"perMachine": false,
"allowElevation": false,
"allowToChangeInstallationDirectory": true,
"createDesktopShortcut": true,
"createStartMenuShortcut": true,
"license": "./LICENSE",
"runAfterFinish": false,
"artifactName": "${productName}_Setup_${os}_${version}.${ext}"
},
"mac": {
"artifactName": "${productName}-${os}-${arch}-${version}.${ext}",
"category": "public.app-category.finance",
"icon": "./build/icon.icns",
"target": [
{
"target": "dmg",
"arch": ["x64", "arm64"]
}
]
},
"linux": {
"target": [
{
"target": "AppImage",
"arch": ["x64", "armv7l"]
}
]
},
"extraMetadata": {
"main": "electron-wrapper.js"
}
}