2.1.0
🚀 Speed
Now all patterns are divided into two types:
static
The patterns without glob magic.
For example: package.json
, /dev/fd
, etc.
dynamic
The patterns with glob magic detected by is-glob
.
For example: *.json
, **/*.js
, etc.
This made it possible to reduce the processing time of static patterns. Something like 10-15 times. For more details, see the issue #60. Thanks @pvdlg for reporting.
🐛 Bug Fixes
- Fix problem with pattern matching for patterns that contains parentheses (sindresorhus/globby#74, micromatch/micromatch#117).
🔨 Flexibility
New options that allow you not to break your brain. User-friendly alternatives for double-negative options:
⚠️ These options have more weight than their ancestors (no*
).
❗ In the next major release, we want to remove the options with double-negation.