Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: increase perf of watching large file count
Fixes #1317 Originally a new Set was generated upon every individual file (or dir) watched. This typically doesn't take a long time, but if there's 10,000 files to watch, it's very, very slow. Moving this logic out to the ready event instead, cuts all the processing time of the watch right down.
- Loading branch information