Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' into deprecate-ssl
Browse files Browse the repository at this point in the history
liamdebeasi authored Dec 20, 2023
2 parents a933dcd + ef5706e commit 8730d86
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
@@ -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;
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
@@ -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;

0 comments on commit 8730d86

Please sign in to comment.