Skip to content

Commit

Permalink
add rimraf glob option
Browse files Browse the repository at this point in the history
  • Loading branch information
taishinaritomi committed Sep 13, 2023
1 parent 2b89eb3 commit dd48f10
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"fix:cargo": "cargo fix --allow-no-vcs",
"fix:cargo-clippy": "cargo clippy --fix --allow-no-vcs",
"fix:cargo-fmt": "cargo fmt",
"clean": "rimraf ./node_modules target target_check ./{packages,playground}/*/{node_modules,dist,.next,.turbo}"
"clean": "rimraf --glob ./node_modules target target_check ./{packages,playground}/*/{node_modules,dist,.next,.turbo}"
},
"devDependencies": {
"@changesets/changelog-github": "^0.4.8",
Expand Down
2 changes: 1 addition & 1 deletion packages/compiler/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,6 @@
"build:web": "run-s build:web:*",
"build:web:wasm-pack": "wasm-pack build --target=web --no-pack --out-dir=../../binding/wasm-web --out-name=excss_compiler ./crates/compiler_wasm",
"build:web:package-json": "echo '{\"type\":\"module\"}' >> binding/wasm-web/package.json",
"build:clean": "rimraf binding/**/.gitignore"
"build:clean": "rimraf --glob binding/**/.gitignore"
}
}

0 comments on commit dd48f10

Please sign in to comment.