Release builds with electron-builder

This commit is contained in:
Geomitron
2020-02-03 13:36:40 -05:00
parent c5ed58ea35
commit 78b41f839c
24 changed files with 1158 additions and 22 deletions

29
electron-builder.json Normal file
View File

@@ -0,0 +1,29 @@
{
"productName": "Bridge",
"directories": {
"output": "release/"
},
"files": [
"dist/**/*"
],
"win": {
"icon": "dist/assets/images/system/icons/win/icon.ico",
"compression": "store",
"target": [
"portable"
]
},
"mac": {
"icon": "dist/assets/images/system/icons/mac/icon.icns",
"compression": "maximum",
"target": [
"dmg"
]
},
"linux": {
"compression": "maximum",
"target": [
"AppImage"
]
}
}