File tree 1 file changed +3
-3
lines changed
packages/angular_devkit/build_angular/src/dev-server
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -314,12 +314,12 @@ export function serveWebpackBrowser(
314
314
} ) ;
315
315
316
316
if ( index === 0 ) {
317
- logger . info ( tags . oneLine `
317
+ logger . info ( '\n' + tags . oneLine `
318
318
**
319
319
Angular Live Development Server is listening on ${ options . host } :${ buildEvent . port } ,
320
320
open your browser on ${ serverAddress }
321
321
**
322
- ` ) ;
322
+ ` + '\n' ) ;
323
323
324
324
if ( options . open ) {
325
325
const open = require ( 'open' ) ;
@@ -328,7 +328,7 @@ export function serveWebpackBrowser(
328
328
}
329
329
330
330
if ( buildEvent . success ) {
331
- logger . info ( `${ colors . greenBright ( colors . symbols . check ) } Compiled successfully.` ) ;
331
+ logger . info ( `\n ${ colors . greenBright ( colors . symbols . check ) } Compiled successfully.` ) ;
332
332
}
333
333
334
334
return of ( { ...buildEvent , baseUrl : serverAddress } as DevServerBuilderOutput ) ;
You can’t perform that action at this time.
0 commit comments