You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
i tried to specify a task like this: npm-run-all --serial a --parallel --race b c d
my intention is to first let a setup task called a run and then run three processes that do not end.
b is starting a server
c is starting a watcher
d is testing some stuff
one d finishes, i'd like c and b to end which i think the --race flag is used for, but it seems to not work when a --serial flag is present.
I was wondering if maybe a new version can be released that adds support for https://www.npmjs.com/package/subarg which might make it easier to group stuff.
The text was updated successfully, but these errors were encountered:
I was wondering if maybe a new version can be released that adds support for https://www.npmjs.com/package/subarg which might make it easier to group stuff.
Personally, I'm unfamiliar with the brackets in CLI parameters. I prefer below or something like for now.
$ run-s a b && run-p --race c d
Of course, I'm not oppose to support for the brackets if it does not cause a breaking change, but I would not work for it actively.
i tried to specify a task like this:
npm-run-all --serial a --parallel --race b c d
my intention is to first let a setup task called
a
run and then run three processes that do not end.b
is starting a serverc
is starting a watcherd
is testing some stuffone
d
finishes, i'd likec
andb
to end which i think the--race
flag is used for, but it seems to not work when a--serial
flag is present.I was wondering if maybe a new version can be released that adds support for https://www.npmjs.com/package/subarg which might make it easier to group stuff.
The text was updated successfully, but these errors were encountered: