We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2d49f95 commit 02d09a9Copy full SHA for 02d09a9
.gitignore
@@ -9,3 +9,8 @@ node_modules/
9
10
/website-deploy-key
11
/website-deploy-key.pub
12
+
13
+# v5 build files
14
+/packages/*/cjs/
15
+/packages/*/esm/
16
+/packages/*/umd/
scripts/clean.js
@@ -0,0 +1,11 @@
1
+import { execSync } from "child_process";
2
3
+execSync(`find . -name 'node_modules' -type d -prune -exec rm -rf '{}' +`, {
4
+ env: process.env,
5
+ stdio: "inherit"
6
+});
7
8
+execSync(`git clean -e '!/website-deploy-key' -e '!/website-deploy-key.pub' -fdX .`, {
0 commit comments