We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a912e78 commit a959718Copy full SHA for a959718
dist/.gitkeep
package.json
@@ -8,8 +8,9 @@
8
"dev:chrome": "cd shells/chrome && webpack --watch --hide-modules",
9
"lint": "eslint src --ext=js,vue && eslint shells/chrome/src && eslint shells/dev/src",
10
"build": "cd shells/chrome && cross-env NODE_ENV=production webpack --progress --hide-modules",
11
- "zip": "rm -f chrome.zip && cd shells && zip -r ../chrome.zip chrome -x *src/* -x *webpack.config.js",
12
- "release": "npm run test && npm run build && npm run zip",
+ "zip:chrome": "zip -r -FS dist/chrome.zip shells/chrome -x *src/* -x *webpack.config.js",
+ "zip:firefox": "web-ext build -s shells/chrome -a dist -i src",
13
+ "release": "npm run test && npm run build && npm run zip:chrome && npm run zip:firefox",
14
"test": "npm run lint && bash test/test.sh"
15
},
16
"repository": {
0 commit comments