fix: add gatsby clean to scripts

pull/36261/head
Mrugesh Mohapatra 2019-06-12 02:48:57 +05:30
parent e7ae9a5b45
commit aee2f5e536
1 changed files with 3 additions and 1 deletions

View File

@ -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",