mirror of
https://github.com/liamcottle/reticulum-meshchat.git
synced 2026-04-28 00:20:48 +00:00
build portable and installer for windows and add suffix to artifact names
This commit is contained in:
parent
5d9b1fc3d3
commit
72fa0f9174
1 changed files with 19 additions and 3 deletions
22
package.json
22
package.json
|
|
@ -17,7 +17,6 @@
|
|||
"build": {
|
||||
"appId": "com.liamcottle.reticulumwebchat",
|
||||
"productName": "Reticulum WebChat",
|
||||
"artifactName": "ReticulumWebChat-v${version}.${ext}",
|
||||
"asar": false,
|
||||
"files": [
|
||||
"electron/**/*"
|
||||
|
|
@ -36,13 +35,30 @@
|
|||
],
|
||||
"mac": {
|
||||
"target": "dmg",
|
||||
"identity": null
|
||||
"identity": null,
|
||||
"artifactName": "ReticulumWebChat-v${version}-${os}.${ext}"
|
||||
},
|
||||
"win": {
|
||||
"target": "portable"
|
||||
"artifactName": "ReticulumWebChat-v${version}-${os}.${ext}",
|
||||
"target": [
|
||||
{
|
||||
"target": "portable"
|
||||
},
|
||||
{
|
||||
"target": "nsis"
|
||||
}
|
||||
]
|
||||
},
|
||||
"dmg": {
|
||||
"writeUpdateInfo": false
|
||||
},
|
||||
"portable": {
|
||||
"artifactName": "ReticulumWebChat-v${version}-${os}-portable.${ext}"
|
||||
},
|
||||
"nsis": {
|
||||
"artifactName": "ReticulumWebChat-v${version}-${os}-installer.${ext}",
|
||||
"oneClick": false,
|
||||
"allowToChangeInstallationDirectory": true
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue