feat(xtask): add success message for wasm watchers

This commit is contained in:
Will Lillis 2025-01-20 23:28:10 -05:00 committed by GitHub
parent 0e226561b1
commit f3259288b3
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -305,6 +305,8 @@ macro_rules! watch_wasm {
($watch_fn:expr) => {
if let Err(e) = $watch_fn() {
eprintln!("{e}");
} else {
println!("Build succeeded");
}
let watch_files = [
@ -335,6 +337,8 @@ macro_rules! watch_wasm {
{
if let Err(e) = $watch_fn() {
eprintln!("{e}");
} else {
println!("Build succeeded");
}
}
}