Closed robatron closed 10 years ago
runSequence runs each of the tasks in turn (synchronously), with a dependency array gulp would run all the dependencies at the same time
if we were able to configure dependencies between gulpfiles (when one compilation depends on another one having completed) then it would be possible to run gulpfiles in parallel.
Can we replace
runSequence
with a task dependency array where hub adds the default task?E.g.,
would become
so we could do things like add support for a 'done' callback, e.g.,
What do you think? Is there anything
run-sequence
does that gulp's task dependency array doesn't?