Skip to content

Commit

Permalink
Merge branch 'develop' into deprecate-ssl
Browse files Browse the repository at this point in the history
  • Loading branch information
liamdebeasi committed Dec 20, 2023
2 parents a933dcd + ef5706e commit 8730d86
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/@ionic/cli/src/lib/project/react/serve.ts
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ export class ReactServeCLI extends ServeCLI<ReactServeOptions> {

const strippedLine = stripAnsi(line);

const compileMsgs = ['Compiled successfully', 'Compiled with warnings', 'Failed to compile'];
const compileMsgs = ['Compiled successfully', 'Compiled with', 'Failed to compile'];
if (compileMsgs.some(msg => strippedLine.includes(msg))) {
this.emit('ready');
return false;
Expand Down
2 changes: 1 addition & 1 deletion packages/@ionic/cli/src/lib/project/vue/serve.ts
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ export class VueServeCLI extends ServeCLI<VueServeOptions> {
}

const strippedLine = stripAnsi(line);
const compileMsgs = ['Compiled successfully', 'Compiled with warnings', 'Failed to compile'];
const compileMsgs = ['Compiled successfully', 'Compiled with', 'Failed to compile'];
if (compileMsgs.some(msg => strippedLine.includes(msg))) {
this.emit('ready');
return false;
Expand Down

0 comments on commit 8730d86

Please sign in to comment.