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,
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,