We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
With earlier versions I had an exclude as such: [./utils.ts,./*.test.ts]. After the upgrade, both are included.
[./utils.ts,./*.test.ts]
The text was updated successfully, but these errors were encountered:
I just looked into this and it looks like it's because of a new bug in glob: isaacs/node-glob#570.
glob
To workaround for now you can change to [utils.ts, *.test.ts]. I will look into an automatic workaround until the upstream issue is fixed.
[utils.ts, *.test.ts]
Sorry, something went wrong.
workaround glob bug (#21)
3a3b9f6
fixes #20 workaround for isaacs/node-glob#570 Co-authored-by: Misha Kaletsky <[email protected]>
Successfully merging a pull request may close this issue.
With earlier versions I had an exclude as such:
[./utils.ts,./*.test.ts]
. After the upgrade, both are included.The text was updated successfully, but these errors were encountered: