npm-run-all
npm-run-all copied to clipboard
Support request: order of execution with wildcard
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 ?
Thank you for the question.
It executes tasks in definition order in package.json.
build:prodFolder:mk will not be catch by build:*
i had to change it for build:prodFolder_mk to make it work
Edit : build:** do the stuff.