postcat/electron-builder.json

46 lines
942 B
JSON

{
"asar": false,
"directories": {
"output": "release/"
},
"files": [
"src/app/**/*.js*",
"src/platform/**/*.js*",
"src/shared/**/*.js*",
"**/*/browser/dist/**/*",
"**/*/node/dist/**/*",
"src/core/api-manager/node/",
"src/core/**/package.json",
"src/app/common/**/*",
"src/app/browser/index.html",
"!**/*.ts"
],
"publish": ["github"],
"generateUpdatesFilesForAllChannels": true,
"nsis": {
"oneClick": false,
"allowElevation": true,
"allowToChangeInstallationDirectory": true
},
"win": {
"icon": "src/app/common/images/256x256.png",
"target": [
{
"target": "nsis"
},
"portable"
]
},
"portable": {
"splashImage": "src/app/common/images/eoapi.bmp"
},
"mac": {
"icon": "src/app/common/images/512x512.png",
"target": ["dmg"]
},
"linux": {
"icon": "src/app/common/images/",
"target": ["AppImage"]
}
}