-
Notifications
You must be signed in to change notification settings - Fork 481
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
Use POSIX Paths Consistently With fast-glob
#3863
Conversation
This comment was marked as resolved.
This comment was marked as resolved.
5578416
to
da9e891
Compare
|
||
const { | ||
searchPaths, | ||
pattern | ||
...otherOptions |
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.
Should this be options?
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.
I chose otherOptions
for the options that will be passed to globSync
. searchPaths
should not be included in those options.
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.
I missed this declaration, my bad 🙈
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.
I found it simpler to re-use globFiles
recursively: d65a838.
Let me know if this works for you, too.
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.
Works for me 👍🏻
da9e891
to
b82fbb5
Compare
Verified this works locally (Linux), too. |
b82fbb5
to
bb071e7
Compare
I'm double-checking that element templates are working. |
Element templates are working as well. |
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.
It works on Mac. Solid as 🪨
Added 5578416 to verify the fix.
globFiles
is now being used by element templates and plugins feature.Closes #3862