Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: thecodrr/fdir
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v6.3.0
Choose a base ref
...
head repository: thecodrr/fdir
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v6.4.0
Choose a head ref
  • 16 commits
  • 13 files changed
  • 6 contributors

Commits on Sep 25, 2024

  1. docs: list more packages using fdir (#112)

    * Update README.md
    
    * address comments and add `rollup/plugins`
    benmccann authored Sep 25, 2024
    Configuration menu
    Copy the full SHA
    ac2a5ee View commit details
    Browse the repository at this point in the history

Commits on Sep 26, 2024

  1. feat: add support for excluding symlinks (#115)

    * feat: add support for excluding symlinks
    
    * chore: requested changes
    SuperchupuDev authored Sep 26, 2024
    Configuration menu
    Copy the full SHA
    14b26d7 View commit details
    Browse the repository at this point in the history
  2. feat: allow custom glob functions other than picomatch

    This allows you to pass in your own `globFunction` rather than
    picomatch, so we're not forcing a choice here (someone may want to use a
    simpler library or a newer picomatch).
    
    Example:
    
    ```ts
    function globFunction(
      patterns: string | string[],
    ) {
      return (test) => {
        // some glob match logic
      };
    }
    
    const api = new fdir({globFunction})
      .glob('*.js')
      .crawl(cwd);
    const files = await api.withPromise();
    ```
    43081j authored and thecodrr committed Sep 26, 2024
    Configuration menu
    Copy the full SHA
    35f1047 View commit details
    Browse the repository at this point in the history
  3. feat: add withGlobFunction method

    43081j authored and thecodrr committed Sep 26, 2024
    Configuration menu
    Copy the full SHA
    a3b213c View commit details
    Browse the repository at this point in the history
  4. docs: add withGlobFunction to docs

    43081j authored and thecodrr committed Sep 26, 2024
    Configuration menu
    Copy the full SHA
    2cf7a9d View commit details
    Browse the repository at this point in the history
  5. chore(deps): bump vite from 5.0.2 to 5.4.8 (#117)

    Bumps [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) from 5.0.2 to 5.4.8.
    - [Release notes](https://github.com/vitejs/vite/releases)
    - [Changelog](https://github.com/vitejs/vite/blob/v5.4.8/packages/vite/CHANGELOG.md)
    - [Commits](https://github.com/vitejs/vite/commits/v5.4.8/packages/vite)
    
    ---
    updated-dependencies:
    - dependency-name: vite
      dependency-type: indirect
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Sep 26, 2024
    Configuration menu
    Copy the full SHA
    1340c63 View commit details
    Browse the repository at this point in the history
  6. chore(deps): bump braces from 3.0.2 to 3.0.3 (#118)

    Bumps [braces](https://github.com/micromatch/braces) from 3.0.2 to 3.0.3.
    - [Changelog](https://github.com/micromatch/braces/blob/master/CHANGELOG.md)
    - [Commits](micromatch/braces@3.0.2...3.0.3)
    
    ---
    updated-dependencies:
    - dependency-name: braces
      dependency-type: indirect
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Sep 26, 2024
    Configuration menu
    Copy the full SHA
    6ba7d22 View commit details
    Browse the repository at this point in the history
  7. fix: support symlinks without real paths with relative paths enabled (#…

    …114)
    
    * fix: support symlinks without real paths with relative paths enabled
    
    * chore: requested changes
    SuperchupuDev authored Sep 26, 2024
    Configuration menu
    Copy the full SHA
    d91cda2 View commit details
    Browse the repository at this point in the history
  8. 1 Configuration menu
    Copy the full SHA
    a42701c View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    1f4a5d5 View commit details
    Browse the repository at this point in the history

Commits on Sep 27, 2024

  1. Configuration menu
    Copy the full SHA
    35cfac7 View commit details
    Browse the repository at this point in the history
  2. chore: add Video Hub App to "Used by" section of README (#121)

    * add Video Hub App to "Used by" section
    
    * Used by section numbered list in order
    
    * copyright 2023 -> 2024
    whyboris authored Sep 27, 2024
    Configuration menu
    Copy the full SHA
    0a27061 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    087c919 View commit details
    Browse the repository at this point in the history
  4. chore: show weekly downloads

    thecodrr committed Sep 27, 2024
    Configuration menu
    Copy the full SHA
    bcff43f View commit details
    Browse the repository at this point in the history

Commits on Sep 29, 2024

  1. Configuration menu
    Copy the full SHA
    40e0f75 View commit details
    Browse the repository at this point in the history

Commits on Sep 30, 2024

  1. chore: bump version to 6.4.0

    thecodrr committed Sep 30, 2024
    Configuration menu
    Copy the full SHA
    5f551d5 View commit details
    Browse the repository at this point in the history
Loading