postcat/electron-builder.json
2022-04-17 09:39:20 +08:00

46 lines
897 B
JSON

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