Closed seangates closed 9 years ago
The problem is that chokidar won't watch a directory below an ignored directory, but fortunately there is a simple workaround. Add a file named .browser-refresh
in the root of your project with the following content:
{
"watch": [
".",
"./node_modules/my-module"
]
}
Let me know if that does or does not work for you.
Didn't work. I now get an error from chokidar. Thanks for continuing to look into it.
This worked along with your update. Thanks!
.browser-refresh-ignore does not seem to honor overrides. For example
... does not currently work.
Note: I'm not sure if having the "my-module" as a symbolic link matters or not, but my module is a symbolic link.