Skip to content

Commit

Permalink
Add top-level clean script to remove all node_modules and dist dirs
Browse files Browse the repository at this point in the history
  • Loading branch information
martijnwalraven committed Aug 11, 2018
1 parent 5cf29b5 commit f03e127
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@
"testonly": "jest --verbose",
"circle": "npm run testonly -- --ci --maxWorkers=2 && npm run lint",
"release": "lerna publish --exact",
"precommit": "lint-staged"
"precommit": "lint-staged",
"clean": "find . -name \"node_modules\" -exec rm -rf '{}' + && find . -name \"dist\" -exec rm -rf '{}' +"
},
"lint-staged": {
"*.ts": [
Expand Down

0 comments on commit f03e127

Please sign in to comment.