Results 594 comments of Paul Miller

Windows doesn't use `/` in paths, it uses `\`.

> How else can this path be escaped to pass glob test? not sure

Just glanced at the project. Seems interesting, but not quite. After I adjusted its code to use `stats` instead of `Dirent`, the performance story became 4x less interesting and in...

Hey Benjamin. This started to happen because we've added symlink support to readdirp. Before, symlinked directories were not followed - only files. https://github.com/paulmillr/readdirp/pull/151 I've been thinking about the test. And...

Yes, i've made a call to release 3.4 with the broken test because vscode and other projects aren't using the functionality. So, all good. The link handling change requires adjustments...

Chokidar should not be used to list files. Use readdirp.

Nodejs 8.2 is not supported. Ensure you’re using 8.16 or even better, 10.x, since we’ll drop 8.x soon. That can resolve the issue.

We should use `node >= 10.16` as a requirement for Chokidar 4 and readdirp 4; because aws λ runs 10.16.3. Ideally >= 10.17, because .17 removes experimental status from `asyncIterator`.