Wildcards and globs can now be used in filters without having to use regex:
ncu react-* # upgrade packages that start with "react-"
ncu \!commander # upgrade everything except "commander"
Since special characters are not allowed in package names, this change shouldn't break anything, but please let me know if a filter that was working before v11.2.0
is not now!
Commits
ee27448 Add filter support for wildcards and glob expressions. Fixes #219.