postcat/electron-builder.json
2022-03-09 14:59:28 +08:00

43 lines
855 B
JSON

{
"asar": true,
"artifactName":"${productName}.${ext}",
"directories": {
"output": "release/"
},
"files": ["**/*", "!**/*.ts", "!*.map", "!package.json", "!package-lock.json"],
"extraResources": [
{
"from": "dist",
"to": "app",
"filter": ["**/*"]
}
],
"publish": ["github"],
"generateUpdatesFilesForAllChannels":true,
"nsis": {
"oneClick": false,
"allowElevation": true,
"allowToChangeInstallationDirectory": true
},
"win": {
"icon": "dist/assets/icons/256x256.png",
"target": [
{
"target": "nsis"
},
"portable"
]
},
"portable": {
"splashImage": "dist/assets/icons/eoapi.bmp"
},
"mac": {
"icon": "dist/assets/icons/512x512.png",
"target": ["dmg"]
},
"linux": {
"icon": "dist/assets/icons",
"target": ["AppImage"]
}
}