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
My directory structure:
. ├── .git ├── .gitignore # a* └── y ├── .gitignore # !a2.txt ├── a2.txt # Should not be ignored └── z └── a2.txt # Should not be ignored.
Globby properly evaluates /y/a2.txt as included. However it fails when evaluating /z/a2.txt which is reported as ignored.
/y/a2.txt
/z/a2.txt
How to reproduce: Unpack globby-issue.zip.
Run:
cd globby-issue npm install node main.js
Current output:
ignored /.../globby-issue/test_dir/y/z/a2.txt included /.../globby-issue/test_dir/y/a2.txt
Expected:
included /.../globby-issue/test_dir/y/z/a2.txt included /.../globby-issue/test_dir/y/a2.txt
Tested under linux with globby 13.2.2. Looks similar to #146.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
My directory structure:
Globby properly evaluates
/y/a2.txt
as included. However it fails when evaluating/z/a2.txt
which is reported as ignored.How to reproduce:
Unpack globby-issue.zip.
Run:
cd globby-issue npm install node main.js
Current output:
Expected:
Tested under linux with globby 13.2.2.
Looks similar to #146.
The text was updated successfully, but these errors were encountered: