postcat/electron-builder.json

51 lines
1.0 KiB
JSON

{
"appId": ".eolinker.com",
"asar": true,
"directories": {
"output": "release/"
},
"files": [
"out/app/**/*.js*",
"out/platform/**/*.js*",
"out/shared/**/*.js*",
"**/*/browser/dist/**/*",
"**/*/node/dist/**/*",
"out/workbench/node/",
"out/core/**/package.json",
"out/app/common/**/*",
"!**/*.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",
"hardenedRuntime": true,
"gatekeeperAssess": false,
"target": ["dmg", "zip"]
},
"dmg": {
"sign": false
},
"linux": {
"icon": "src/app/common/images/",
"target": ["AppImage"]
}
}