Closed computersarecool closed 7 years ago
I've never seen that before. What's the code for the cdnizer
step look like? What version of Node & Gulp are you running?
Generally speaking, almost all errors with run-sequence
are due to misconfigured tasks—specifically, ones that don't handle async correctly. If any step along the way doesn't return a stream, promise, or use a callback, then it's possible your cdnizer
task is running before another step completes.
I am sure that is it. I will investigate my tasks closer and report back.
@computersarecool Did you ever find out any more about this?
It was due, as you thought, to a misconfigured task. Thank you.
cdnizer is awesome, so is run-sequence.
However, when I use them together I run into an issue. Currently my sequence looks like this:
When I run
gulp prep
I get:But when I run
gulp cdnizer
alone, I do not have this issue. Is this something I am doing wrong on my end?