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
The way run-sequence works, it cannot do this nor can it support it. run-sequence works by asking gulp to run each item in the sequential list, then listening for the completion event, then starting the next. As far as gulp is concerned, each item in the list is run independently.
You'll need to remove the traditional dependency to support your use case. You could move the :history:buys and :sells tasks into "private" tasks, which are don't have any dependencies, then create new tasks with dependencies and use run-sequence to start the "private" tasks with the dependencies. That's obviously getting a bit convoluted, though.
does run-sequence can make deps only run one same as gulp?
transactions:client
is dep fortransactions:history:buys
&transactions:history:sells
but it shouldn't run > 1 time
any options for this?
The text was updated successfully, but these errors were encountered: