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
I notice you have a lot of similar issues related to windows paths. This one is specifically relative paths:
On unix, this throws an error. cwd is /mnt/c/module
ignore.ignores('/mnt/c/module/package.json') fatal error RangeError: path should be a `path.relative()`d string, but got "/mnt/c/module/package.json"
On windows it behaves differently. Possibly a false positive, but there's no error:
cwd is C:\module
ignore.ignores('C:\module\package.json')
The text was updated successfully, but these errors were encountered:
#54: try to isPathValid on Windows when checking windows absolute paths
249c520
a42f201
#54: test: fixes appveyor.yml
557e4ca
#54: bump version 5.1.1
bff5d32
Fixes a typo of an example
landed in 5.1.1
5.1.1
https://github.com/kaelzhang/node-ignore/releases/tag/5.1.1
Sorry, something went wrong.
No branches or pull requests
I notice you have a lot of similar issues related to windows paths. This one is specifically relative paths:
On unix, this throws an error.
cwd is /mnt/c/module
On windows it behaves differently. Possibly a false positive, but there's no error:
cwd is C:\module
The text was updated successfully, but these errors were encountered: