Skip to content

2.2.2

Compare
Choose a tag to compare
@mrmlnc mrmlnc released this 15 May 19:46
· 533 commits to master since this release

馃挰 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.