Skip to content

Commit

Permalink
fix: exclude node_modules from swep command
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisfalaska committed Oct 30, 2024
1 parent b844e63 commit f56329b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@
"build:input:release": "npm-run-all build:input:full build:test build:demo:input",
"build:dropdown:release": "npm-run-all build:dropdown:full build:test build:demo:dropdown",

"sweep": "rm -rf dist && find ./demo ./src ./components -type f \\( -name \"*.css\" -o -name \"*-css.js\" \\) -delete",
"sweep": "rm -rf dist && find ./demo ./src ./components -not -path \"*/node_modules/*\" -type f \\( -name \"*.css\" -o -name \"*-css.js\" \\) -delete",

"test": "wtr --coverage",
"test:watch": "wtr --watch",
Expand Down

0 comments on commit f56329b

Please sign in to comment.