Releases: kaelzhang/node-ignore
Releases · kaelzhang/node-ignore
6.x (== 5.3.2)
6.x
- The release of
6.x
is due to a mistake. - Making an upgrade from
5.x
to 6.x for now actually changes nothing and does no harm, everyone could just upgrade or ignore the version.- Actually
6.0.2
is5.3.2
- Actually
- The next major release will be
7.0.0
5.3.0
5.2.4
- PATCH fixes normal single asterisk and normal consecutive asterisks defined in gitignore spec (#57)
- PATCH invalid trailing backslash will not throw unexpectedly
An upgrade is recommended for all dependents
The following rules could be not properly parsed with previous ignore
versions
**foo
*bar
qu*ux
abc\ # `ignore` would throw if no whitespace after `\`
5.2.0
- PATCH support readonly arrays of typescript. (#70)
- MINOR bring backward compatibility with relative paths. (#75)
An upgrade is recommended for all dependents.
ignore().ignores('../foo/bar.js') // will throw
And the code below will not throw, however it is not recommended
ignore({
allowRelativePaths: true
}).ignores('../foo/bar.js')
Recommend:
ignore().ignores('foo/bar.js')
5.1.9
5.1.5
5.1.3
5.1.1
2019-04-14, Version 5.1.0
- FEATURE: Typescript: export interface Ignore (#53)