-
Notifications
You must be signed in to change notification settings - Fork 58
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
feat: add withSymlinks
argument back
#104
Conversation
c5e3e4d
to
75951c8
Compare
75951c8
to
3dfa66b
Compare
hi @thecodrr, any chance you can take a look at this anytime soon? symlinks wont quite work in my library until this (or an equivalent solution) is merged |
Relevant commit: cdb201f |
yes, that commit is what this PR aims to implement, but #81 removed the |
useRealPaths
backwithSymlinks
argument back
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.
Thank you so much for adding this back!
Co-authored-by: Abdullah Atta <thecodrr@protonmail.com>
This reverts commit e6ebb44.
@thecodrr i've reverted the |
@thecodrr is there anything blocking the PR? |
While working on
tinyglobby
I've noticed there is no way to disablefdir
returning the real path of a symlink anymore, due to #81 silently removing support for it (even though the documentation still mentions the feature!).This PR adds it back, inside an object parameter instead for better API design (see #83 (comment)). It defaults to
true
for backwards compatibilityCloses #103