How to run script that run a run-s wildcard? #6813
-
"scripts": {
"lint:oxlint": "oxlint . --fix -D correctness --ignore-path .gitignore",
"lint:eslint": "eslint . --fix",
"lint": "run-s lint:*",
}, this works as expected:
this does not work
I also tried this
this is generated scaffold code for vue project if you run |
Beta Was this translation helpful? Give feedback.
Answered by
clemyan
Jun 5, 2025
Replies: 1 comment
-
You need to quotes to prevent the shell from expanding globs
|
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
bhbghghbgb
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You need to quotes to prevent the shell from expanding globs