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 want to ignore changes to every directory except one. So I tried: /^(?!(web)).*/. It seems to work in theory, as tested here: https://regex101.com/r/W6WQkS/1
However, it doesn't work with your module, this fails to ignore directories other than web/:
I looked deeper into your code to see how you're using chokidar and isolated a pure chokidar example and that seemed to create the same problem. Created an issue with them paulmillr/chokidar#1128
The text was updated successfully, but these errors were encountered:
Hi there, this is an old issue, yet I faced the same situation, happens that the prop to ignore files is ignore not ignored as stated in the main file of the lib.
I want to ignore changes to every directory except one. So I tried:
/^(?!(web)).*/
. It seems to work in theory, as tested here: https://regex101.com/r/W6WQkS/1However, it doesn't work with your module, this fails to ignore directories other than
web/
:I looked deeper into your code to see how you're using
chokidar
and isolated a purechokidar
example and that seemed to create the same problem. Created an issue with them paulmillr/chokidar#1128The text was updated successfully, but these errors were encountered: