mirror of
https://gitee.com/eolink_admin/postcat.git
synced 2024-11-30 02:37:57 +08:00
43 lines
855 B
JSON
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"]
|
|
}
|
|
}
|