mirror of
https://github.com/heyman/heynote.git
synced 2024-11-08 09:04:36 +01:00
d361a5a073
Save ZIP file in mac build artifact instead of DMG file
47 lines
870 B
Plaintext
47 lines
870 B
Plaintext
/**
|
|
* @see https://www.electron.build/configuration/configuration
|
|
*/
|
|
{
|
|
"appId": "com.heynote.app",
|
|
"asar": true,
|
|
//"icon": "public/favicon.ico",
|
|
"directories": {
|
|
"output": "release/${version}",
|
|
"buildResources": "resources"
|
|
},
|
|
"files": [
|
|
"dist-electron",
|
|
"dist"
|
|
],
|
|
"mac": {
|
|
"artifactName": "${productName}_${version}_${arch}.${ext}",
|
|
"target": [
|
|
{
|
|
target: 'default',
|
|
arch: [
|
|
'x64',
|
|
'arm64'
|
|
]
|
|
}
|
|
],
|
|
},
|
|
"win": {
|
|
"target": [
|
|
{
|
|
"target": "nsis",
|
|
"arch": [
|
|
"x64"
|
|
]
|
|
}
|
|
],
|
|
"artifactName": "${productName}_${version}.${ext}",
|
|
"icon": "public/favicon.ico"
|
|
},
|
|
"nsis": {
|
|
"oneClick": false,
|
|
"perMachine": false,
|
|
"allowToChangeInstallationDirectory": true,
|
|
"deleteAppDataOnUninstall": false
|
|
}
|
|
}
|