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
Build performance can still be improved a lot. Especially rebuilds take too much time right now. The main tasks which consume time are the bundling (rollup) and the forking/reloading of the process.
Not entirely sure if the forking/reloading can be done any quicker, but for development an alternative solution could be found.
We are losing a lot of time because the worker.once('exit') is never called in time (so we always get the 5 second timeout).
It seems this is done intentionally. I guess to allow the worker to gracefully shutdown (?). It does slow down rebuild by a fixed 5 seconds. Fixed in #703
For the last 2 points we still need some reliable reproduction. I encountered it often but have not yet been able to reliably reproduce. Likely timing/lock issue in the watcher.
Build performance can still be improved a lot. Especially rebuilds take too much time right now. The main tasks which consume time are the bundling (rollup) and the forking/reloading of the process.
Not entirely sure if the forking/reloading can be done any quicker, but for development an alternative solution could be found.
Enable incremental rebuilds for Rollup( see PR feat: enable rollup cache feature #700 )Improve performance of loading new bundle( see issue Disconnect event not listened to on worker shutdown #702, PR fix: gracefully shutdown workers instead of waiting for the timeout to pass (fixes #702) #703 )The text was updated successfully, but these errors were encountered: