Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Improves performance of glob exclusions by avoiding extra glob IO
- IO is not necessary for exclusions because they exclude file paths that have already been discovered. Using `file.match` / `minimatch` is sufficient. - adds optional `excludeFn` callback to `processPatterns`. If provided, it will be called instead of `fn` for exclusion patterns.
- Loading branch information