chore(cli): improve "waiting for dev server" message, closes #3491 (#3504)

This commit is contained in:
Lucas Fernandes Nogueira
2022-02-18 10:39:22 -03:00
committed by GitHub
parent b571c249dc
commit 5999379fb0
2 changed files with 10 additions and 1 deletions

View File

@@ -0,0 +1,6 @@
---
"cli.rs": patch
"cli.js": patch
---
Improve "waiting for your dev server to start" message.

View File

@@ -210,7 +210,10 @@ pub fn command(options: Options) -> Result<()> {
break;
}
if i % 3 == 0 {
logger.warn("Waiting for your dev server to start...");
logger.warn(format!(
"Waiting for your frontend dev server to start on {}...",
dev_server_url
));
}
i += 1;
if i == max_attempts {