npm-run-all icon indicating copy to clipboard operation
npm-run-all copied to clipboard

Support request: order of execution with wildcard

Open gunzip opened this issue 7 years ago • 2 comments

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 ?

gunzip avatar Nov 30 '17 15:11 gunzip

Thank you for the question.

It executes tasks in definition order in package.json.

mysticatea avatar Dec 02 '17 06:12 mysticatea

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.

1000i100 avatar Oct 12 '18 16:10 1000i100