You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Dec 15, 2022. It is now read-only.
Distinguish and report events relating to symlinks.
Introduce a kind: "symlink" for filesystem events that involve symlinks. (Symlink entry kind #111)
When a watch root path containing a symlink is passed to watchPath(), report paths to listeners as the symlink path, but disambiguate the watch root using the realpath. (Report paths consistently with watcher creation #113)
Include a test to be sure we don't lock on up symlink loops. We shouldn't because of the way I'm traversing the filesystem but it pays to be sure. (Unit tests for symlink edge cases #114)
Distinguish and report events relating to symlinks.
kind: "symlink"for filesystem events that involve symlinks. (Symlink entry kind #111)watchPath(), report paths to listeners as the symlink path, but disambiguate the watch root using the realpath. (Report paths consistently with watcher creation #113)