File tree 3 files changed +3
-3
lines changed
packages/angular_devkit/build_angular/src/builders/browser-esbuild
3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -267,7 +267,7 @@ async function execute(
267
267
logBuildStats ( context , metafile , initialFiles ) ;
268
268
269
269
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]` ) ;
271
271
272
272
return executionResult ;
273
273
}
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ import { getGlobalVariable } from '../../utils/env';
6
6
7
7
export default async function ( ) {
8
8
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 \. / ;
10
10
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 / ;
11
11
12
12
const port = await ngServe ( ) ;
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ export async function ngServe(...args: string[]) {
27
27
const port = await findFreePort ( ) ;
28
28
29
29
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 \. / ;
31
31
32
32
await execAndWaitForOutputToMatch (
33
33
'ng' ,
You can’t perform that action at this time.
0 commit comments