We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When you use the glob pattern to run tasks in sequence (ie. with run-s):
npm-run-all build:*
npm-run-all
what's the expected order of execution ?
The text was updated successfully, but these errors were encountered:
Thank you for the question.
It executes tasks in definition order in package.json.
Sorry, something went wrong.
build:prodFolder:mk will not be catch by build:* i had to change it for build:prodFolder_mk to make it work
build:prodFolder:mk
build:*
build:prodFolder_mk
Edit : build:** do the stuff.
build:**
No branches or pull requests
When you use the glob pattern to run tasks in sequence (ie. with run-s):
npm-run-all
build:*what's the expected order of execution ?
The text was updated successfully, but these errors were encountered: