File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
packages/@ionic/cli/src/lib/project Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -112,7 +112,7 @@ export class ReactServeCLI extends ServeCLI<ReactServeOptions> {
112112
113113 const strippedLine = stripAnsi ( line ) ;
114114
115- const compileMsgs = [ 'Compiled successfully' , 'Compiled with warnings ' , 'Failed to compile' ] ;
115+ const compileMsgs = [ 'Compiled successfully' , 'Compiled with' , 'Failed to compile' ] ;
116116 if ( compileMsgs . some ( msg => strippedLine . includes ( msg ) ) ) {
117117 this . emit ( 'ready' ) ;
118118 return false ;
Original file line number Diff line number Diff line change @@ -63,7 +63,7 @@ export class VueServeCLI extends ServeCLI<VueServeOptions> {
6363 }
6464
6565 const strippedLine = stripAnsi ( line ) ;
66- const compileMsgs = [ 'Compiled successfully' , 'Compiled with warnings ' , 'Failed to compile' ] ;
66+ const compileMsgs = [ 'Compiled successfully' , 'Compiled with' , 'Failed to compile' ] ;
6767 if ( compileMsgs . some ( msg => strippedLine . includes ( msg ) ) ) {
6868 this . emit ( 'ready' ) ;
6969 return false ;
You can’t perform that action at this time.
0 commit comments