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: paulmillr/chokidar
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 4.0.1
Choose a base ref
...
head repository: paulmillr/chokidar
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 4.0.2
Choose a head ref
  • 17 commits
  • 7 files changed
  • 5 contributors

Commits on Sep 24, 2024

  1. docs(README): add missing conversion from async generator

    As mentioned #1350 (comment) node actually returns an async generator from its glob function. We can use `Array.fromAsync` to convert it to an array promise. This array method was added rather recently (v22), but if you are using node's glob you also have it.
    bxt authored Sep 24, 2024
    Configuration menu
    Copy the full SHA
    bd387f9 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #1365 from bxt/patch-1

    docs(README): add missing conversion from async generator
    paulmillr authored Sep 24, 2024
    Configuration menu
    Copy the full SHA
    ec073a8 View commit details
    Browse the repository at this point in the history

Commits on Oct 1, 2024

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

Commits on Oct 3, 2024

  1. Clarify EMFILE error

    paulmillr committed Oct 3, 2024
    Configuration menu
    Copy the full SHA
    710ee7c View commit details
    Browse the repository at this point in the history

Commits on Oct 4, 2024

  1. readme

    paulmillr committed Oct 4, 2024
    Configuration menu
    Copy the full SHA
    87351a6 View commit details
    Browse the repository at this point in the history
  2. readme

    paulmillr committed Oct 4, 2024
    Configuration menu
    Copy the full SHA
    f7c48d8 View commit details
    Browse the repository at this point in the history
  3. readme

    paulmillr committed Oct 4, 2024
    Configuration menu
    Copy the full SHA
    bdd7b92 View commit details
    Browse the repository at this point in the history
  4. readme

    paulmillr committed Oct 4, 2024
    Configuration menu
    Copy the full SHA
    9f235bf View commit details
    Browse the repository at this point in the history

Commits on Oct 12, 2024

  1. readme

    paulmillr committed Oct 12, 2024
    Configuration menu
    Copy the full SHA
    1bce197 View commit details
    Browse the repository at this point in the history

Commits on Oct 19, 2024

  1. Configuration menu
    Copy the full SHA
    92c4a58 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #1375 from tagattie/freebsd-fix

    Fix test "should detect safe-edit" on FreeBSD
    paulmillr authored Oct 19, 2024
    Configuration menu
    Copy the full SHA
    97894d3 View commit details
    Browse the repository at this point in the history

Commits on Oct 29, 2024

  1. feat: strongly type event emitter methods

    Adds strong types to the event emitter interface such that `on` and
    similar methods can infer parameters.
    
    For example:
    
    ```ts
    // these are strongly typed and will give hints in editors etc
    watcher.on('ready', () => {});
    watcher.on('error', (err) => {});
    
    // this will fail
    watcher.on('nonsense', () => {});
    ```
    
    Fixes #1372
    43081j committed Oct 29, 2024
    Configuration menu
    Copy the full SHA
    7958696 View commit details
    Browse the repository at this point in the history

Commits on Nov 1, 2024

  1. Configuration menu
    Copy the full SHA
    6981c5d View commit details
    Browse the repository at this point in the history
  2. Merge pull request #1383 from bluwy/map-ref

    Remove references to .map files
    paulmillr authored Nov 1, 2024
    Configuration menu
    Copy the full SHA
    e9cd7f6 View commit details
    Browse the repository at this point in the history
  3. Merge pull request #1381 from paulmillr/event-types

    feat: strongly type event emitter methods
    paulmillr authored Nov 1, 2024
    Configuration menu
    Copy the full SHA
    5e6daaa View commit details
    Browse the repository at this point in the history

Commits on Dec 16, 2024

  1. Ignore map

    paulmillr committed Dec 16, 2024
    Configuration menu
    Copy the full SHA
    50cf698 View commit details
    Browse the repository at this point in the history
  2. Release 4.0.2.

    paulmillr committed Dec 16, 2024
    Configuration menu
    Copy the full SHA
    69c115a View commit details
    Browse the repository at this point in the history
Loading