Clean-deps without dependencies on packages (#6774)

Removes all node_modules without dependnecy on lerna or any other package.
This commit is contained in:
Andrew Smith
2020-03-23 03:47:49 -04:00
committed by GitHub
parent d810950379
commit bfc93aad70

View File

@@ -18,7 +18,7 @@
"check-node-version": "node scripts/check-node-version.js",
"check-terminal": "node scripts/check-terminal.js",
"clean": "lerna run clean --parallel",
"clean-deps": "lerna run clean-deps --parallel && rm -rf node_modules",
"clean-deps": "find . -depth -name node_modules -type d -exec rm -rf {} \\;",
"precypress:open": "yarn ensure-deps",
"cypress:open": "node $(yarn bin cypress) open --dev --global",
"precypress:open:debug": "yarn ensure-deps",