-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathelectron-builder.json
More file actions
42 lines (42 loc) · 846 Bytes
/
electron-builder.json
File metadata and controls
42 lines (42 loc) · 846 Bytes
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
{
"appId": "com.myself.boilerplate",
"files": ["dist-main", "dist-renderer"],
"extraResources": [
"dist-main/preload.cjs",
"src/assets/**",
{
"from": ".env.production",
"to": ".env"
},
{
"from": "./src/main/app-preload/spinner.html",
"to": "dist-main/spinner.html"
}
],
"mac": {
"target": "dmg",
"icon": "./src/assets/512x512.png",
"identity": null
},
"linux": {
"target": "AppImage",
"category": "Utility"
},
"win": {
"target": "nsis",
"icon": "./src/assets/256x256.png"
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true
},
"publish": [
{
"provider": "github",
"owner": "trae-op",
"repo": "electron-modular-boilerplate",
"releaseType": "release",
"private": false
}
]
}