You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
it looks like if the gitignore lib used builtins.pathExists instead of readDir to find .gitignore and .git dir entries, it would be much more optimally performant with lorri
since it uses readDir we effectively have to trigger new evaluations any time the list of files in a directory changes
whereas a pathExists call we can be much more precise about the watch behavior
Most of the IO there is written with memoization in mind
I don't see a reason right now why we can't do a pathExists before some readDirs so that seems worthwhile to investigate
The text was updated successfully, but these errors were encountered:
@grahamc
Most of the IO there is written with memoization in mind
I don't see a reason right now why we can't do a pathExists before some readDirs so that seems worthwhile to investigate
The text was updated successfully, but these errors were encountered: