mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
Judging from the variety and extent of test failures, switching to chokidar.watch was too drastic a change for this late-beta stage of the release cycle. The problem with pathwatcher.watch was that watches don't survive the deletion of the watched file, because (like fs.watch) it watches files based on inodes, not paths. This problem can be solved in a relatively narrow way, by attempting to rewatch the file after any "delete" or "rename" events.