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
Describe the issue
Webpack 5 promises to execute faster and produce smaller bundles (though this should be checked with our specific use case) so we should update when possible.
This will also mean we no longer support Node 8, which is ok because it's ancient anyway, but should be a major version change to make the breaking compatibility clear.
At the same time consider dropping support for Node 10, 12, and potentially 14...
The text was updated successfully, but these errors were encountered:
I gave this a shot, but my very naive approach cause webpack to hang on execution in unit tests without any indication of why or where, so I've backed out for now.
Copy/pasting my comment here for posterity's sake:
The unit tests were hanging because they were mocking timers. Webpack calls setImmediate at some point during the compilation and since it was overridden by the mock, it never called its callback.
Describe the issue
Webpack 5 promises to execute faster and produce smaller bundles (though this should be checked with our specific use case) so we should update when possible.
This will also mean we no longer support Node 8, which is ok because it's ancient anyway, but should be a major version change to make the breaking compatibility clear.
At the same time consider dropping support for Node 10, 12, and potentially 14...
The text was updated successfully, but these errors were encountered: