Skip to content

Commit 47a1ccc

Browse files
committed
refactor: disable esbuild worker threads
This is a workaround for `TypeError [Error]: Cannot read property 'workerPort' of undefined`.
1 parent f69e4f3 commit 47a1ccc

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

packages/angular_devkit/build_angular/src/webpack/plugins/javascript-optimizer-plugin.ts

+6
Original file line numberDiff line numberDiff line change
@@ -143,6 +143,12 @@ export class JavaScriptOptimizerPlugin {
143143
const workerPool = new Piscina({
144144
filename: workerPath,
145145
maxThreads: MAX_OPTIMIZE_WORKERS,
146+
env: {
147+
...process.env,
148+
// Workaround for `TypeError [Error]: Cannot read property 'workerPort' of undefined`
149+
// See: https://github.com/evanw/esbuild/commit/aa8b9ce8d462378f0f06ac52e83f6c32332dde38
150+
ESBUILD_WORKER_THREADS: '0',
151+
},
146152
});
147153

148154
// Enqueue script optimization tasks and update compilation assets as the tasks complete

0 commit comments

Comments
 (0)