feat(xtask): add success message for wasm watchers
This commit is contained in:
parent
0e226561b1
commit
f3259288b3
1 changed files with 4 additions and 0 deletions
|
|
@ -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");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue