File tree Expand file tree Collapse file tree 1 file changed +9
-2
lines changed
packages/angular_devkit/build_angular/src/builders/application Expand file tree Collapse file tree 1 file changed +9
-2
lines changed Original file line number Diff line number Diff line change @@ -87,8 +87,15 @@ export async function* buildApplicationInternal(
8787 const result = await executeBuild ( normalizedOptions , context , rebuildState ) ;
8888
8989 const buildTime = Number ( process . hrtime . bigint ( ) - startTime ) / 10 ** 9 ;
90- const status = result . errors . length > 0 ? 'failed' : 'complete' ;
91- logger . info ( `Application bundle generation ${ status } . [${ buildTime . toFixed ( 3 ) } seconds]` ) ;
90+ const hasError = result . errors . length > 0 ;
91+
92+ if ( writeToFileSystem && ! hasError ) {
93+ logger . info ( `Output location: ${ normalizedOptions . outputOptions . base } \n` ) ;
94+ }
95+
96+ logger . info (
97+ `Application bundle generation ${ hasError ? 'failed' : 'complete' } . [${ buildTime . toFixed ( 3 ) } seconds]` ,
98+ ) ;
9299
93100 return result ;
94101 } ,
You can’t perform that action at this time.
0 commit comments