-
-
Notifications
You must be signed in to change notification settings - Fork 4.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Task dependency confusion #265
Comments
cc @robrich |
Duplicate of robrich/orchestrator#26 |
I agree. Note your thoughts in robrich/orchestrator#26 and let's find good |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I know gulp just relies on orchestrator for this, but I found that the way it handles multiple serial dependencies is cumbersome. I'll explain -
I want to be able to define my "build" task like that, where it will run clean, compile, then post in order. The problem is that orchestrator will run the three dependencies at once.
I can make it work like this:
The problem with this approach is that I can't re-combine my build tasks in new ways. I can't just kick off my compile task - it has to run clean first. And I can't kick off my post task by itself - it has to run compile first.
Maybe there's a way to kick off the other tasks from the body of my build function in series? This seems like a common enough case that i'd expect gulp to handle it well out of the box (or am I missing something here?).
Thanks for taking a look,
Chris
The text was updated successfully, but these errors were encountered: