diff options
author | HasanAlrimawi <141642411+HasanAlrimawi@users.noreply.github.com> | 2024-11-16 16:59:31 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-11-16 15:59:31 +0100 |
commit | abf06eb87f10ebed93b39948213dccfe086bd0fa (patch) | |
tree | f67a1d5f6f0ba8ec7ff666f1029fa225978b242c /cli/tools/lint/mod.rs | |
parent | 768c5ea2bb2a927455577a29f0761425593aea98 (diff) |
feat(watch): log which file changed on HMR or watch change (#25801)
Closes #25504
Diffstat (limited to 'cli/tools/lint/mod.rs')
-rw-r--r-- | cli/tools/lint/mod.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cli/tools/lint/mod.rs b/cli/tools/lint/mod.rs index 36f1cc049..a9c2d0152 100644 --- a/cli/tools/lint/mod.rs +++ b/cli/tools/lint/mod.rs @@ -80,6 +80,7 @@ pub async fn lint( file_watcher::PrintConfig::new("Lint", !watch_flags.no_clear_screen), move |flags, watcher_communicator, changed_paths| { let lint_flags = lint_flags.clone(); + watcher_communicator.show_path_changed(changed_paths.clone()); Ok(async move { let factory = CliFactory::from_flags(flags); let cli_options = factory.cli_options()?; |