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
Relay compiler falls back to using WalkDir to iterate over the filesystem when Watchman isn't available. The problem is that this implementation walks over every single file under root_dir, which can be your entire repository, rather than limiting it to the files being referenced by the Relay configuration.
This can be a lot of wasted work, and is going to be slow for larger mono-repositories.
The text was updated successfully, but these errors were encountered:
Relay compiler falls back to using WalkDir to iterate over the filesystem when Watchman isn't available. The problem is that this implementation walks over every single file under
root_dir
, which can be your entire repository, rather than limiting it to the files being referenced by the Relay configuration.This can be a lot of wasted work, and is going to be slow for larger mono-repositories.
The text was updated successfully, but these errors were encountered: