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
[gulp] Finished 'vendor-fonts' in 4.17 s
[gulp] Finished 'stylus' in 4.18 s
[gulp] Finished 'html' in 4.17 s
[gulp] Finished 'vendor-css' in 4.17 s
[gulp] Finished 'vendor-js' in 4.17 s
[gulp] Finished 'jade' in 4.18 s
[gulp] Finished 'images' in 4.18 s
[gulp] Finished 'coffee' in 4.18 s
Why's that? It seems like the tasks are being executed synchronously. This may be because uglify is blocking the main thread for ~4 seconds. We should figure out a way to show the correct durations in a case like this.
There are no dependencies between any plugins and they all return a stream
The text was updated successfully, but these errors were encountered:
Interesting. We launched all the tasks, they were all async, none had
dependencies, and all of them waited for one thread hog. How would we know
which one burned the CPU and for how long?
When I fire off tasks like this
My task durations come back like this:
Why's that? It seems like the tasks are being executed synchronously. This may be because uglify is blocking the main thread for ~4 seconds. We should figure out a way to show the correct durations in a case like this.
There are no dependencies between any plugins and they all return a stream
The text was updated successfully, but these errors were encountered: