Skip to content

Commit

Permalink
Merge pull request #1231 from TheOtterlord/patch-7
Browse files Browse the repository at this point in the history
Baklava: Add `exe` build & remove `msi` builds
  • Loading branch information
benawad authored Mar 19, 2021
2 parents 57122de + 8e365ee commit ff3f89e
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions baklava/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@
"dev": "npm run compile && node ./dist/dev.js",
"start": "npm run compile && electron ./dist/electron.js",
"build": "npm run compile && electron-builder",
"build:all": "npm run compile && electron-builder -mwl --win msi",
"build:all": "npm run compile && electron-builder -mwl",
"build:mac": "npm run compile && electron-builder --mac",
"build:win": "npm run compile && electron-builder --win msi",
"build:win": "npm run compile && electron-builder --win",
"build:linux": "npm run compile && electron-builder --linux"
},
"keywords": [
Expand Down Expand Up @@ -51,7 +51,15 @@
},
"win": {
"icon": "icons/icon.png",
"target": "msi"
"target": [
{
"target": "nsis",
"arch": [
"x64",
"ia32"
]
}
]
},
"linux": {
"icon": "icons/icon.png",
Expand Down

0 comments on commit ff3f89e

Please sign in to comment.