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
In our modular project we have many different places where JS files may be located. We want to exclude all js files which are located in a /js/vendor directory. That would be this pattern: //js/vendor/*.
But that's not possible since the file pattern doesn't allow / and the directory pattern doesn't allow //.
The text was updated successfully, but these errors were encountered:
In our modular project we have many different places where JS files may be located. We want to exclude all js files which are located in a
/js/vendor
directory. That would be this pattern://js/vendor/*
.But that's not possible since the file pattern doesn't allow
/
and the directory pattern doesn't allow//
.The text was updated successfully, but these errors were encountered: