This commit is contained in:
eric
2026-05-21 00:48:55 -05:00
parent e6e4f7a02e
commit c72ef5466a
2 changed files with 85 additions and 1 deletions

View File

@@ -13,7 +13,8 @@
"stage:offline-runtime": "node ./scripts/stage-offline-runtime.mjs",
"prepare:runtime": "node ./scripts/prepare-runtime.mjs",
"verify:runtime": "node ./scripts/verify-runtime.mjs",
"dist": "pnpm run prepare:runtime && pnpm run build && pnpm run gen:icons && pnpm run verify:runtime && electron-builder --win --publish never"
"verify:win-package": "node ./scripts/verify-win-package.mjs",
"dist": "pnpm run prepare:runtime && pnpm run build && pnpm run gen:icons && pnpm run verify:runtime && electron-builder --win --publish never && pnpm run verify:win-package"
},
"dependencies": {
"d3": "^7.9.0",
@@ -81,12 +82,19 @@
],
"win": {
"icon": "build/icon.ico",
"artifactName": "${productName}-Windows-x64-${version}.${ext}",
"target": [
{
"target": "portable",
"arch": [
"x64"
]
},
{
"target": "zip",
"arch": [
"x64"
]
}
]
},