Parallel Webpack builds fail to report errors
We've seen this primarily in Azure DevOps linux pipeline agents (doesn't seem to repro on windows), where we have a just task with multiple parallel webpack builds and sometimes there won't be outputs for some of the webpack builds, nor errors. Our just config has something along the lines of this:
series( parallel( webpackCliTask(...), webpackCliTask(...), webpackCliTask(...), webpackCliTask(...), webpackCliTask(...), webpackCliTask(...)), 'postWebpackTask');
The postWebpackTask will still execute in cases where not all of the webpack bundles are observed. Haven't been able to nail down a firm root cause (e.g. is the webpack process dead? do we fail to wait for all of them correctly?)
Has there been any progress on this? We are running into this one as well, and would love to get further inputs.