Johan Fagerberg

Results 20 comments of Johan Fagerberg

Should be mentioned that the executables are actually symlinks, and are handled by [`wh.filterDir`](https://github.com/paulmillr/chokidar/blob/master/index.js#L429-L439), not [`wh.filterPath`](https://github.com/paulmillr/chokidar/blob/master/index.js#L410-L417). They pass this, when they shouldn't. Unfortunately I have run out of time for...

Yes, reverting to 1.6.0 does resolve the issue. I believe the proper way to fix this would be to check if the realpath that the symlink points to is a...

Given that the filtering functions are used by `readdirp`, I don't think async is even supported. It'd have to use the sync variants either way, which greatly simplifies the implementation.

@jedwards1211 A symlink is essentially the same thing as having a directory/file in two places. If you have a directory `latest` which is a symlink to `0.9.20`, then any files...

@jedwards1211 Yes. Chokidar will handle symlink as if though they were folders/files - except for the issue described here.

@paulmillr https://github.com/birjolaxew/chokidar-544

Can confirm that @ForsakenHarmony's suggestion works. Your tsconfig should look a little something like this: ```js { "compilerOptions": { // ... "baseUrl": ".", "paths": { "react": ["node_modules/preact/compat"], "react-dom": ["node_modules/preact/compat"] }...

This is because react-onclickoutside uses `mousedown` and `touchstart` by default. Since scrolling requires touching the screen, a `touchstart` is fired and the outsideclick event to fire. Can be fixed by...

@Pomax My testing indicates that my personal use case (closing a menu when a click happens outside of it) works with `click` - is there some specific supported use case...

I have created a reproduction repo over on [birjj/vercel-7820](https://github.com/birjj/vercel-7820). It is currently deployed to https://vercel-7820.vercel.app/, where `/api/` should respond with the headers ``` X-Test-Header: Foo X-Test-Header-2: Bar X-Test-Header-2: Baz X-Test-Header-3:...