Update build configuration after electron-builder update

This commit is contained in:
Scott Nonnenberg 2023-08-18 12:02:01 -07:00 committed by Jamie Kyle
parent 6f14b5f45d
commit dea5606736

View file

@ -367,7 +367,8 @@
] ]
} }
], ],
"bundleVersion": "1" "bundleVersion": "1",
"afterSign": "ts/scripts/after-sign.js"
}, },
"win": { "win": {
"artifactName": "${name}-win-${version}.${ext}", "artifactName": "${name}-win-${version}.${ext}",
@ -392,7 +393,8 @@
"signDlls": true, "signDlls": true,
"target": [ "target": [
"nsis" "nsis"
] ],
"afterSign": "ts/scripts/after-sign.js"
}, },
"nsis": { "nsis": {
"deleteAppDataOnUninstall": true, "deleteAppDataOnUninstall": true,
@ -406,7 +408,8 @@
"target": [ "target": [
"deb" "deb"
], ],
"icon": "build/icons/png" "icon": "build/icons/png",
"publish": []
}, },
"deb": { "deb": {
"depends": [ "depends": [
@ -426,7 +429,6 @@
] ]
}, },
"afterPack": "ts/scripts/after-pack.js", "afterPack": "ts/scripts/after-pack.js",
"afterSign": "ts/scripts/after-sign.js",
"afterAllArtifactBuild": "ts/scripts/after-all-artifact-build.js", "afterAllArtifactBuild": "ts/scripts/after-all-artifact-build.js",
"asar": { "asar": {
"smartUnpack": false "smartUnpack": false