Update to electron-builder

This commit is contained in:
Sebastian Peischl
2017-11-24 15:48:56 +01:00
parent 9552315295
commit 0e94b5285b
6 changed files with 27 additions and 74 deletions

View File

@@ -1,10 +1,25 @@
{
"directories": {
"app": "dist",
"output": "app-builds"
},
"win": {
"icon": "dist/favicon",
"target": ["portable"]
}
"productName": "angular-electron",
"directories": {
"app": "dist",
"output": "app-builds"
},
"win": {
"icon": "dist/favicon",
"target": [
"portable"
]
},
"mac": {
"icon": "dist/favicon",
"target": [
"dmg"
]
},
"linux": {
"icon": "dist/favicon",
"target": [
"AppImage"
]
}
}