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
I needed to exclude all node_modules except bootstrap. I has a nice regexp which should have worked unfortunately an escape of useful regexp tokens is done. Why is it for ?
This issue is caused by escapeStringToRegexp(str) in main.js. I had to change the code to avoid this escaping.
Here is my regexp : node_modules(?!\/bootstrap)\/.+
Thanks,
The text was updated successfully, but these errors were encountered:
Hey,
I needed to exclude all node_modules except bootstrap. I has a nice regexp which should have worked unfortunately an escape of useful regexp tokens is done. Why is it for ?
This issue is caused by
escapeStringToRegexp(str)
in main.js. I had to change the code to avoid this escaping.Here is my regexp :
node_modules(?!\/bootstrap)\/.+
Thanks,
The text was updated successfully, but these errors were encountered: