Skip to content

Commit

Permalink
🔨 use dist for local development instead of temp folder
Browse files Browse the repository at this point in the history
this will allow user to use dist folder instead of switching between temp and dist
  • Loading branch information
ashfahan committed Jul 2, 2021
1 parent 11b0b01 commit 284bf4c
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 @@ -35,13 +35,13 @@
"scripts": {
"prepare": "husky install",
"start": "npm-run-all -s watch",
"watch": "node-sass ./src --output ./temp/ --output-style compact --indent-type space --indent-width 2 --source-map true -w",
"watch": "node-sass ./src --output ./dist/ --output-style compact --indent-type space --indent-width 2 --source-map true -w",
"try": "npm-run-all -s lint test",
"lint": "stylelint src/**/*.scss --fix",
"test": "npm-run-all -p test:**",
"test:usedVar": "fusv ./src",
"test:style": "stylelint src/**/*.scss",
"test:compile": "node-sass ./src --output ./temp",
"test:compile": "node-sass ./src --output ./dist",
"build": "npm-run-all dist",
"dist": "npm-run-all -s test dist:**",
"dist:clean": "shx rm -rf ./dist",
Expand Down

0 comments on commit 284bf4c

Please sign in to comment.