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
the ** ast doesn't matches against ../ paths as per _toRegExp's comment:
// Double star shouldn't match paths with a leading "../", since these paths
// wouldn't be listed with this glob. We only check for "../" at the
// beginning since the paths are normalized before being checked against the
// glob.
The text was updated successfully, but these errors were encountered:
Consider:
If you are within:
and check against:
then
glob.matches
returns false.This seems to be because:
**
ast returnscanMatchAbsolute => false
../
paths as per_toRegExp
's comment:The text was updated successfully, but these errors were encountered: