You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
…use RegExp
Previously, trailing single wildcards '*' could be "zero-length" matches.
The glob `foo.*` would match `foo` and `foo.bar` but not `foo.bar.baz`.
Likewise, the glob `foo.*.*` would also match `foo`.
Now, all single wildcards match one segment.
The glob `foo.*` matches `foo.bar` but does not match `foo`.
Use `foo.**` instead to match zero or more segments.
test(Glob): Add more glob tests
docs(Glob): Document glob
Closes#2965
Globbing patterns are commonly misunderstood.
The glob docs should be rewritten, centralized with examples (on the
Glob
class)The text was updated successfully, but these errors were encountered: