Commit 2152287 1 parent 0bd9a81 commit 2152287 Copy full SHA for 2152287
File tree 1 file changed +1
-4
lines changed
packages/angular_devkit/build_angular/src/utils
1 file changed +1
-4
lines changed Original file line number Diff line number Diff line change @@ -78,11 +78,8 @@ export const allowMinify = debugOptimize.minify;
78
78
const maxWorkersVariable = process . env [ 'NG_BUILD_MAX_WORKERS' ] ;
79
79
export const maxWorkers = isPresent ( maxWorkersVariable ) ? + maxWorkersVariable : 4 ;
80
80
81
- // Default to enabled unless inside a Web Container which currently fails when transferring MessagePort objects
82
81
const parallelTsVariable = process . env [ 'NG_BUILD_PARALLEL_TS' ] ;
83
- export const useParallelTs = isPresent ( parallelTsVariable )
84
- ? ! isDisabled ( parallelTsVariable )
85
- : ! process . versions . webcontainer ;
82
+ export const useParallelTs = ! isPresent ( parallelTsVariable ) || ! isDisabled ( parallelTsVariable ) ;
86
83
87
84
const legacySassVariable = process . env [ 'NG_BUILD_LEGACY_SASS' ] ;
88
85
export const useLegacySass : boolean = ( ( ) => {
You can’t perform that action at this time.
0 commit comments