Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,11 @@
"build:types:watch": "ts-node scripts/build-types-watch.ts",
"build:npm": "lerna run --parallel build:npm",
"circularDepCheck": "lerna run --parallel circularDepCheck",
"clean": "lerna run --parallel clean && lerna clean --yes && yarn rimraf eslintcache",
"clean": "run-p clean:build clean:caches",
"clean:build": "lerna run --parallel clean",
"clean:caches": "yarn rimraf eslintcache && yarn jest --clearCache",
"clean:deps": "lerna clean --yes && rm -rf node_modules && yarn",
"clean:all": "run-p clean:build clean:caches clean:deps",
"codecov": "codecov",
"fix": "lerna run --parallel fix",
"link:yarn": "lerna exec --parallel yarn link",
Expand Down