💬 Common
- Now the
fast-glob
package officially supports Node.js 10.
🔨 Flexibility
@nodelib packages
We started migrating to @nodelib packages, which will allow us to fully control the process of package development and some performance improvements (for example, see @nodelib/scandir
where we can filter entries before we get fs.Stats
) (#104)
🐛 Bug Fixes
Fix incorrect search in negative patterns group (#107)
Previously, we skipped negative patterns whose base paths did not fully matched with the base path of the positive pattern. For more details about this situation take a look at #107.
Fix Incorrect negative pattern detection (#101)
In some cases, the !
symbol may not mean that we are working with a negative pattern.
The
!(a|b|c)
pattern is matches anything except one of the given patterns.