Skip to content

Commit

Permalink
fix: add gatsby clean to scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
raisedadead committed Jun 11, 2019
1 parent e7ae9a5 commit aee2f5e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion package.json
Expand Up @@ -3,7 +3,9 @@
"version": "0.0.1",
"scripts": {
"bootstrap": "lerna bootstrap --ci",
"clean": "lerna clean && shx rm -rf node_modules",
"clean": "npm-run-all clean:client clean:all-deps",
"clean:all-deps": "lerna clean && shx rm -rf node_modules",
"clean:client": "cd ./client && gatsby clean",
"develop": "npm-run-all ensure-env -p develop:*",
"develop:client": "cd ./client && npm run develop",
"develop:server": "cd ./api-server && node development-entry.js",
Expand Down

0 comments on commit aee2f5e

Please sign in to comment.