| commit | 303f88d2ff444468df8a408173ed780557e07aef | [log] [tgz] |
|---|---|---|
| author | Nate Bosch <nbosch1@gmail.com> | Wed Apr 15 17:38:26 2020 -0700 |
| committer | GitHub <noreply@github.com> | Wed Apr 15 17:38:26 2020 -0700 |
| tree | 5348607b046295b093906a586e8f18b0a5a44c44 | |
| parent | 51c389da0aeb645666c784a6271e2fac896334bd [diff] |
Fix missing events for files with directory prefix (dart-lang/watcher#84) Fixes dart-lang/watcher#83 If any event had the same leading characters as a directory that was also changed it would get filtered out. For example if both `lib/b/` and `lib/b.dart` have change events we'd lose the events for `lib/b.dart` because it shared a prefix with a directory, even though it isn't contained within that directory.