-
-
Notifications
You must be signed in to change notification settings - Fork 106
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
Consider moving from chokidar
to sane
.
#36
Comments
I think we can definitely consider this. In #26 @gullitmiranda suggest to use Gaze. Have you also looked into that (I have no idea which is "better")? Do you think you would be able to make a proof of concept using sane (or Gaze)? I could test it on some projects of mine, and later we could ask for more people to test it. It won't be an easy change, but might be worth it in the long run. |
I had looked at |
I have this mostly complete, but there are a couple of tests that are not passing. |
Maybe you could just not listen on the |
Btw, when you have fixed this, we could ask some people from create-react-app to help with testing. I think it was @gaearon who was asking about if it was possible to use |
It was. Actually, that tweet is kinda the reason I decided to try this. |
Yeah I'd be happy to test it. |
The issue isn't so much the |
Proof of Concept: #41. |
Was this proposal abandoned? |
Yes |
Any reason why? |
yes for what reason? |
I'd love to re-examine this. A big chunk of time in Furthermore, it doesn't seem like |
The |
while we do not use both |
@lovetingyuan |
@evilebottnawi yes, but the new version of |
That would close this issue. |
Seems jest will replace |
sane
is the filesystem watcher used byjest-cli
. It supports Linux, OS X, and Windows, and can usewatchman
if available. More notably, its dependency tree is significantly smaller than the dependency tree forchokidar
.Keep in mind that
fsevents
should only be required in OS X systems.I played around with it for an hour or two and, for the most part,
sane
seemed to be able to take the place ofchokidar
without issue. Would something like this be considered?The text was updated successfully, but these errors were encountered: