Skip to content

Commit

Permalink
fix: update running pattern to include 'ready' status (#12719)
Browse files Browse the repository at this point in the history
  • Loading branch information
huimiu authored Nov 13, 2024
1 parent 7d4f606 commit 1e07633
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/cli/src/cmds/preview/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,8 @@ export const funcHostedBotStartPattern =
/Worker process started and initialized|Host lock lease acquired by instance ID/g;
export const funcHostedBotAzuritePattern = /successfully listening/g;
export const gulpServePattern = /^.*Finished subtask 'reload'.*/g;
export const defaultRunningPattern = /started|successfully|finished|crashed|failed|listening/i;
export const defaultRunningPattern =
/started|successfully|finished|crashed|failed|listening|ready/i;

export const spfxInstallStartMessage = `executing 'npm install' under ${FolderName.SPFx} folder.`;
export const gulpCertTitle = "gulp trust-dev-cert";
Expand Down

0 comments on commit 1e07633

Please sign in to comment.