Skip to content
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

Makes file matching / expanding much faster (in some situations twice as fast) #1562

Open
wants to merge 2 commits into
base: main
Choose a base branch
from

Commits on Nov 8, 2016

  1. Improves performance of file.expand, file.expandMapping, and `tas…

    …k.normalizeMultiTaskFiles` by caching glob fs results across multiple calls to `glob.sync`
    cspotcode committed Nov 8, 2016
    Configuration menu
    Copy the full SHA
    8755cdd View commit details
    Browse the repository at this point in the history
  2. 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.
    cspotcode committed Nov 8, 2016
    Configuration menu
    Copy the full SHA
    56131e3 View commit details
    Browse the repository at this point in the history