File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
packages/angular_devkit/build_angular/src/builders/browser-esbuild Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -267,7 +267,7 @@ async function execute(
267267 logBuildStats ( context , metafile , initialFiles ) ;
268268
269269 const buildTime = Number ( process . hrtime . bigint ( ) - startTime ) / 10 ** 9 ;
270- context . logger . info ( `Complete . [${ buildTime . toFixed ( 3 ) } seconds]` ) ;
270+ context . logger . info ( `Application bundle generation complete . [${ buildTime . toFixed ( 3 ) } seconds]` ) ;
271271
272272 return executionResult ;
273273}
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ import { getGlobalVariable } from '../../utils/env';
66
77export default async function ( ) {
88 const esbuild = getGlobalVariable ( 'argv' ) [ 'esbuild' ] ;
9- const validBundleRegEx = esbuild ? / C o m p l e t e \. / : / C o m p i l e d s u c c e s s f u l l y \. / ;
9+ const validBundleRegEx = esbuild ? / c o m p l e t e \. / : / C o m p i l e d s u c c e s s f u l l y \. / ;
1010 const lazyBundleRegEx = esbuild ? / l a z y \. m o d u l e / : / l a z y _ m o d u l e _ t s \. j s / ;
1111
1212 const port = await ngServe ( ) ;
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ export async function ngServe(...args: string[]) {
2727 const port = await findFreePort ( ) ;
2828
2929 const esbuild = getGlobalVariable ( 'argv' ) [ 'esbuild' ] ;
30- const validBundleRegEx = esbuild ? / C o m p l e t e \. / : / C o m p i l e d s u c c e s s f u l l y \. / ;
30+ const validBundleRegEx = esbuild ? / c o m p l e t e \. / : / C o m p i l e d s u c c e s s f u l l y \. / ;
3131
3232 await execAndWaitForOutputToMatch (
3333 'ng' ,
You can’t perform that action at this time.
0 commit comments