We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
nodejs fs.watch is unreliable, see #2381
fs.watch
Node.js fs.watch ... Emits most changes as rename.
The reason we use fs.watch for cases like https://github.com/aws/aws-toolkit-vscode/pull/2381/files is because vscode's builtin watcher only works for files in a workspace folder. microsoft/vscode#3025
createFileSystemWatcher
The text was updated successfully, but these errors were encountered:
Next vscode release will include this. microsoft/vscode#3025
Note:
For non-recursive watchers, no excludes will apply, but for recursive watchers, the same excludes apply that apply for workspace folder watching.
Sorry, something went wrong.
No branches or pull requests
nodejs
fs.watch
is unreliable, see #2381The reason we use fs.watch for cases like https://github.com/aws/aws-toolkit-vscode/pull/2381/files is because vscode's builtin watcher only works for files in a workspace folder. microsoft/vscode#3025createFileSystemWatcher
API AllowcreateFileSystemWatcher
with custom exclude rules microsoft/vscode#169724Proposal
use https://github.com/paulmillr/chokidar or https://www.npmjs.com/package/fb-watchman instead offs.watch
The text was updated successfully, but these errors were encountered: