-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathelectron-builder.json
38 lines (38 loc) · 1.25 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
{
"$schema": "https://raw.githubusercontent.com/electron-userland/electron-builder/master/packages/app-builder-lib/scheme.json",
"asar": true,
"appId": "de.panomenal.mechtacticscommander",
"productName": "MechTactics-Commander",
"copyright": "Daniel Czeschner",
"directories": {
"app": ".",
"output": "release/",
"buildResources": "build-res"
},
"files": [
"!src/**/*",
"./dist/app/renderer/index.bundle.js",
"./dist/app/renderer/pages/index.html",
"./dist/app/renderer/update.bundle.js",
"./dist/app/renderer/pages/update.html",
"./dist/app/renderer/dashboard.bundle.js",
"./dist/app/renderer/pages/dashboard.html",
"./dist/app/core/main.js",
"./dist/app/core/AppConstants.js",
"./dist/app/core/CoreConfig.js",
"./dist/app/core/Updater.js",
"./dist/app/renderer/utils/components/formatter/PlanetAffiliationAgeDynFormatter.js",
"./dist/app/core/AppUpgradeInfo.js",
"./dist/app/core/upgrades/**/*",
"./dist/app/core/csv/**/*",
"./dist/app/core/repositories/*",
"./dist/app/core/commander.db",
"./dist/app/core/window/AppWindow.js",
"./dist/app/core/window/preload.js",
"./dist/app/renderer/utils/Utils.js"
],
"win": {
"target": "nsis",
"publish": ["github"]
}
}