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
I come across webpack hanging on company building machine. After hours and hours I manage to craft a tiny example ( link ) and reproduce it on my mac as well as travis ( link ).
Travis errored due to timeout and it is expected to fail immediately.
When webpack throws js compilation errors, chances are node-sass just setup a worker to compile sass and this worker does not get closed while the webpack exits. Thue webpack is hang.
Related issues may be sass/node-sass#857 but I am not sure if it is same issue.
This issue may involve several teams and I hope we can work together to fix. Before we fix the issue
As noted by @crvv the following is invalid and does not work at all. I also find a workaround for this specific hanging situation:-
UV_THREADPOOL_SIZE=1 webpack --config ./config.js
It will disable the asyncQueue of sass-loader. Use at your own risk.
The text was updated successfully, but these errors were encountered:
I come across webpack hanging on company building machine. After hours and hours I manage to craft a tiny example ( link ) and reproduce it on my mac as well as travis ( link ).
Travis errored due to timeout and it is expected to fail immediately.
When webpack throws js compilation errors, chances are
node-sass
just setup a worker to compile sass and this worker does not get closed while thewebpack
exits. Thuewebpack
is hang.Related issues may be sass/node-sass#857 but I am not sure if it is same issue.
This issue may involve several teams and I hope we can work together to fix. Before we fix the issue
As noted by @crvv the following is invalid and does not work at all.
I also find a workaround for this specific hanging situation:-It will disable theasyncQueue
ofsass-loader
. Use at your own risk.The text was updated successfully, but these errors were encountered: