-
Notifications
You must be signed in to change notification settings - Fork 2k
fix: treat symlink directory as directory #532
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
Conversation
@markjm is attempting to deploy a commit to the Vercel Team on Vercel. A member of the Team first needs to authorize it. |
}, | ||
Unsorted: true, | ||
Unsorted: true, | ||
AllowNonDirectory: true, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This setting just does what the deleted compat code does already
Unsorted: true, | ||
Unsorted: true, | ||
AllowNonDirectory: true, | ||
FollowSymbolicLinks: false, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Defaults to false
anyway, but setting it explicitly, because some functionality depends on not following symlinks. For example, following symlinks in node_modules a yarn workspace will send you right back to the source code.
This pull request is being automatically deployed with Vercel (learn more). 🔍 Inspect: https://vercel.com/vercel/turbo-site/2Lg15nUANcw4BcidCx8CwF3JSMLu |
Sure. In the meantime, it seems pnpm usage is more common than the frequency of the original bug I was trying to fix - so should probably just revert this for now. I think I understand the gist of the issue, but I'm not at my computer til later today |
Fixes #531