Skip to content

Commit

Permalink
#6 clean old dist folder before build
Browse files Browse the repository at this point in the history
  • Loading branch information
motorina0 committed Jun 2, 2021
1 parent fde94bc commit d21d926
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@
"manifest:firefox": "jq -s '.[0] * .[1]' src/manifests/base.manifest.json src/manifests/firefox.manifest.json > src/manifest.json",
"manifest:chrome": "jq -s '.[0] * .[1]' src/manifests/base.manifest.json src/manifests/chrome.manifest.json > src/manifest.json",
"manifest:opera": "jq -s '.[0] * .[1]' src/manifests/base.manifest.json src/manifests/opera.manifest.json > src/manifest.json",
"dev:firefox": "npm run manifest:firefox && mix",
"dev:chrome": "npm run manifest:chrome && mix",
"dev:opera": "npm run manifest:opera && mix",
"prod:firefox": "npm run manifest:firefox && mix --production",
"prod:chrome": "npm run manifest:chrome && mix --production",
"prod:opera": "npm run manifest:opera && mix --production",
"dev:firefox": "rm -rf dist && npm run manifest:firefox && mix",
"dev:chrome": "rm -rf dist && npm run manifest:chrome && mix",
"dev:opera": "rm -rf dist && npm run manifest:opera && mix",
"prod:firefox": "rm -rf dist && npm run manifest:firefox && mix --production",
"prod:chrome": "rm -rf dist && npm run manifest:chrome && mix --production",
"prod:opera": "rm -rf dist && npm run manifest:opera && mix --production",
"watch:chrome": "npm run manifest:chrome && && mix watch",
"build:firefox": "npm run prod:firefox && rm -rf dist-zip && npm run zip",
"build:chrome": "npm run prod:chrome && rm -rf dist-zip && npm run zip",
Expand Down

0 comments on commit d21d926

Please sign in to comment.