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
[20:19:38] 'cdnizer' errored after 25 ms
|[20:19:38] RangeError: Array buffer allocation failed
| at Buffer.Uint8Array (native)
| at FastBuffer (buffer.js:11:5)
| at createUnsafeBuffer (buffer.js:38:12)
| at allocate (buffer.js:181:12)
| at Function.Buffer.allocUnsafe (buffer.js:141:10)
| at tryCreateBuffer (fs.js:474:21)
| at Object.fs.readFileSync (fs.js:519:14)
| at Object.Module._extensions..json (module.js:585:20)
| at Module.load (module.js:487:32)
| at tryModuleLoad (module.js:446:12)
|[20:19:38] 'prep' errored after 4.3 s
|[20:19:38] RangeError in plugin 'run-sequence(cdnizer)'
|Message:
| Array buffer allocation failed
|Stack:
But when I run gulp cdnizer alone, I do not have this issue. Is this something I am doing wrong on my end?
The text was updated successfully, but these errors were encountered:
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.
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?The text was updated successfully, but these errors were encountered: