File tree 2 files changed +12
-10
lines changed
build_angular/src/app-shell
build_webpack/src/webpack
2 files changed +12
-10
lines changed Original file line number Diff line number Diff line change @@ -180,10 +180,9 @@ async function _appShellBuilder(
180
180
let spinner : Spinner | undefined ;
181
181
182
182
try {
183
- // Using `.result` instead of `.output` causes Webpack FS cache not to be created.
184
183
const [ browserResult , serverResult ] = await Promise . all ( [
185
- browserTargetRun . output . toPromise ( ) as Promise < BrowserBuilderOutput > ,
186
- serverTargetRun . output . toPromise ( ) as Promise < ServerBuilderOutput > ,
184
+ browserTargetRun . result as Promise < BrowserBuilderOutput > ,
185
+ serverTargetRun . result as Promise < ServerBuilderOutput > ,
187
186
] ) ;
188
187
189
188
if ( browserResult . success === false || browserResult . baseOutputPath === undefined ) {
@@ -203,8 +202,7 @@ async function _appShellBuilder(
203
202
204
203
return { success : false , error : err . message } ;
205
204
} finally {
206
- // workaround for [tsetse] All Promises in async functions must either be awaited or used in an expression.
207
- const _ = Promise . all ( [ browserTargetRun . stop ( ) , serverTargetRun . stop ( ) ] ) ;
205
+ await Promise . all ( [ browserTargetRun . stop ( ) , serverTargetRun . stop ( ) ] ) ;
208
206
}
209
207
}
210
208
Original file line number Diff line number Diff line change @@ -72,16 +72,20 @@ export function runWebpack(
72
72
log ( stats , config ) ;
73
73
74
74
const statsOptions = typeof config . stats === 'boolean' ? undefined : config . stats ;
75
-
76
- obs . next ( {
75
+ const result = {
77
76
success : ! stats . hasErrors ( ) ,
78
77
webpackStats : shouldProvideStats ? stats . toJson ( statsOptions ) : undefined ,
79
78
emittedFiles : getEmittedFiles ( stats . compilation ) ,
80
79
outputPath : stats . compilation . outputOptions . path ,
81
- } as unknown as BuildResult ) ;
80
+ } as unknown as BuildResult ;
82
81
83
- if ( ! config . watch ) {
84
- webpackCompiler . close ( ( ) => obs . complete ( ) ) ;
82
+ if ( config . watch ) {
83
+ obs . next ( result ) ;
84
+ } else {
85
+ webpackCompiler . close ( ( ) => {
86
+ obs . next ( result ) ;
87
+ obs . complete ( ) ;
88
+ } ) ;
85
89
}
86
90
} ;
87
91
You can’t perform that action at this time.
0 commit comments