-
-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Labels
Description
Description
Automatically re-run tasks when files change.
Proposed Syntax
dev:
watch:
paths: [src/**/*.rs]
ignore: [target/]
cmd: cargo buildAcceptance Criteria
- Watch specified file patterns
- Ignore specified patterns
- Debounce rapid changes
- Clear output option
- Graceful shutdown (Ctrl+C)
Notes
Consider using notify crate for cross-platform file watching.