diff options
author | Matthew Miller <matthew@millerti.me> | 2022-09-28 14:33:21 -0700 |
---|---|---|
committer | Matthew Miller <matthew@millerti.me> | 2022-09-28 14:33:21 -0700 |
commit | 1e53111162a3de9196d0aca34f611dc3a41231dd (patch) | |
tree | bc6c2e9ce5112f9a3e1397337efc4199418a1339 | |
parent | 6ac8490cfd60182a4a193c4985f24aba33f64599 (diff) |
Add "clean" script
-rw-r--r-- | package.json | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/package.json b/package.json index 59080b9..da90c73 100644 --- a/package.json +++ b/package.json @@ -4,6 +4,7 @@ "scripts": { "bootstrap": "lerna bootstrap", "bootstrap:ci": "lerna bootstrap --hoist", + "clean": "lerna clean -y && rm ./packages/**/package-lock.json", "lint": "prettier --write packages/**/src/**/*.ts example/**/*.ts && eslint --fix packages/**/src/**/*.ts example/**/*.ts", "docs": "npm run bootstrap && typedoc --tsconfig tsconfigdoc.json", "test": "lerna run test", |