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
Thanks for the great parser and matcher! I'd love to help contribute the fix for this, but may need some pointers as the parsing logic here seems pretty complex. For some history behind the issue, feel free to check out the initial report on fast-glob: mrmlnc/fast-glob#365
Creating a file called test.js in this repo with the following contents illustrates the problem pretty easily:
In short, the targetted pattern isn't matched once it is part of a brace group. Looking at the combined regex, it appears there is a / literal inserted before the 'foo' literal that isn't present in the targetted regex, likely causing the issue.
Let me know if there is anything I can do to help get this fixed, as its presenting as an issue within Nx and we'd love to be able to mitigate.
The text was updated successfully, but these errors were encountered:
Hey @jonschlinkert!
Thanks for the great parser and matcher! I'd love to help contribute the fix for this, but may need some pointers as the parsing logic here seems pretty complex. For some history behind the issue, feel free to check out the initial report on
fast-glob
: mrmlnc/fast-glob#365Creating a file called
test.js
in this repo with the following contents illustrates the problem pretty easily:The terminal output looks something like this:
In short, the targetted pattern isn't matched once it is part of a brace group. Looking at the combined regex, it appears there is a
/
literal inserted before the 'foo' literal that isn't present in the targetted regex, likely causing the issue.Let me know if there is anything I can do to help get this fixed, as its presenting as an issue within Nx and we'd love to be able to mitigate.
The text was updated successfully, but these errors were encountered: