From 4f52a027baec6af2c01fc6036b4b0a5ddc68929e Mon Sep 17 00:00:00 2001 From: Alex Rudenko Date: Wed, 22 Mar 2023 10:31:55 +0100 Subject: [PATCH] chore: fix rimraf cli (#9901) --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 28c2d76f4b1..75f342c580e 100644 --- a/package.json +++ b/package.json @@ -11,7 +11,7 @@ "build:docs": "wireit", "check:pinned-deps": "tsx tools/ensure-pinned-deps", "check": "npm run check --workspaces --if-present && run-p check:*", - "clean": "rimraf \"**/.wireit\" && npm run clean --workspaces --if-present", + "clean": "rimraf -g \"./**/.wireit\" && npm run clean --workspaces --if-present", "commitlint": "commitlint --from=HEAD~1", "debug": "mocha --inspect-brk", "docs": "run-s build:docs generate:markdown",