-
-
Notifications
You must be signed in to change notification settings - Fork 132
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(volume): support the recursive option for fs.watch() #902
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
G-Rath
approved these changes
Apr 5, 2023
Does this resolve #883 by chance? |
alienzhou
force-pushed
the
feat/watch-recursive
branch
from
April 6, 2023 16:12
ab70c6d
to
5e7c1dc
Compare
streamich
pushed a commit
that referenced
this pull request
Apr 6, 2023
# [3.5.0](v3.4.13...v3.5.0) (2023-04-06) ### Features * support the `recursive` option for `fs.watch()` ([#902](#902)) ([c829803](c829803))
🎉 This PR is included in version 3.5.0 🎉 The release is available on: Your semantic-release bot 📦🚀 |
fyi this is causing the tests that were added as part of streamich/unionfs#557 in |
I think this implementation is buggy Running the test using the native file system results in the file watcher being called only once and with `foo.js` (instead of twice and with `/tmp/foo.js`)
Running the test with `memfs` _before_ this change results in the test passing
Running the test with `memfs` _after_ this change results in the test failing as being called with an empty string twice
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
The
fs.watch
API hasrecursive
option but it did not implement it. For example, the watching listener below will not be triggered:Besides when a child file's content (not recursive) is changed, the listener will not be triggered too:
Resolves #883