Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
don't ignore some EventKind::Modify (#9767)
# Objective - File modification don't trigger hot reload on macOS ## Solution - [`EventKind::Modify`](https://docs.rs/notify/latest/notify/event/enum.EventKind.html#variant.Modify) can have several reasons - [`ModifyKind::Any`](https://docs.rs/notify/latest/notify/event/enum.ModifyKind.html) was used to react to change events, and later ModifyKind::Name for file name change. It left other variants of change ignored (`Data`, `Metadata`, `Other`) - move the modification handling after the rename so that it handles all other variants
- Loading branch information