Closed TrySound closed 8 years ago
This is the standard way parallel async stuff is handled in node (look at the async
module, etc). In gulp-cli, we are doing a process.exit(1)
when that callback is called; If that is your problem, please open this over there.
@TrySound Also, if that is your issue, I think you are looking for the --continue
flag that continues on an error.
I run in parallel 4 tasks:
markup
,script
,style
,image
. If at least one of them is failed, build breaks in the same time. I think end of all tasks in parallel should be waited and then errored. Paralleled tasks do not depends on each other so they should be ended correctly.