Skip to content

Commit 67d85ac

Browse files
committed
Test out lots more installer formats
Only including simple standard install builds for now - in future it might be worth exploring nsisWeb, snap, or appx to improve install experience (especially SmartScreen warnings) and/or get more distribution options.
1 parent 698275c commit 67d85ac

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

package.json

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,8 @@
5252
],
5353
"mac": {
5454
"target": [
55-
"dmg"
55+
"dmg",
56+
"zip"
5657
],
5758
"category": "public.app-category.developer-tools",
5859
"icon": "src/icons/icon.icns",
@@ -65,14 +66,19 @@
6566
},
6667
"win": {
6768
"target": [
68-
"nsis"
69+
"nsis",
70+
"portable",
71+
"zip"
6972
],
7073
"icon": "./src/icons/icon.ico",
7174
"forceCodeSigning": true
7275
},
7376
"linux": {
7477
"target": [
75-
"deb"
78+
"deb",
79+
"rpm",
80+
"AppImage",
81+
"zip"
7682
],
7783
"executableName": "httptoolkit",
7884
"category": "Development",

0 commit comments

Comments
 (0)