Skip to content

Commit

Permalink
fix package command
Browse files Browse the repository at this point in the history
  • Loading branch information
htrinter committed Nov 27, 2023
1 parent 19d31b5 commit 6c9352c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
"build:chrome": "export TARGET=chrome && run-p type-check \"build {@}\" --",
"build:firefox": "export TARGET=firefox && run-p type-check \"build {@}\" --",
"build:all": "npm run build:chrome && npm run build:firefox",
"package:chrome": "mkdir -p dist-package && zip -FSrj dist-package/open-multiple-urls-$npm_package_version-chrome.zip dist-chrome",
"package:firefox": "mkdir -p dist-package && zip -FSrj dist-package/open-multiple-urls-$npm_package_version-firefox.zip dist-firefox",
"package:chrome": "mkdir -p dist-package && cd dist-chrome && zip -FSr ../dist-package/open-multiple-urls-$npm_package_version-chrome.zip .",
"package:firefox": "mkdir -p dist-package && cd dist-firefox && zip -FSr ../dist-package/open-multiple-urls-$npm_package_version-firefox.zip .",
"package:all": "npm run package:chrome && npm run package:firefox",
"dev:chrome": "export TARGET=chrome && run-p type-check \"watch {@}\" --",
"dev:firefox": "export TARGET=firefox && run-p type-check \"watch {@}\" --",
Expand Down

0 comments on commit 6c9352c

Please sign in to comment.