File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
angular/build/src/tools/esbuild/stylesheets
angular_devkit/build_angular/src/tools/webpack/configs Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ function isSassException(error: unknown): error is Exception {
23
23
24
24
export function shutdownSassWorkerPool ( ) : void {
25
25
if ( sassWorkerPool ) {
26
- sassWorkerPool . close ( ) ;
26
+ void sassWorkerPool . close ( ) ;
27
27
sassWorkerPool = undefined ;
28
28
} else if ( sassWorkerPoolPromise ) {
29
29
void sassWorkerPoolPromise . then ( shutdownSassWorkerPool ) ;
Original file line number Diff line number Diff line change @@ -66,7 +66,7 @@ export async function getStylesConfig(wco: WebpackConfigOptions): Promise<Config
66
66
extraPlugins . push ( {
67
67
apply ( compiler ) {
68
68
compiler . hooks . shutdown . tap ( 'sass-worker' , ( ) => {
69
- sassImplementation . close ( ) ;
69
+ void sassImplementation . close ( ) ;
70
70
} ) ;
71
71
} ,
72
72
} ) ;
You can’t perform that action at this time.
0 commit comments