为什么默认 Ember .watchmanconfig 不忽略 node_modules?
Why does the default Ember .watchmanconfig not ignore node_modules?
很多人有守望者问题(超出限制等),我查看了Ember中的默认.watchmanconfig
。
看起来像这样:
{
"ignore_dirs": ["tmp", "dist"]
}
观看这两个文件夹当然有意义,但我想知道:为什么不也忽略 node_modules
?这样做有什么真正的缺点吗?
...why not also ignore node_modules?
如果你 install/upgrade 一个节点模块,你不希望它重新加载你的应用程序吗?
If all you need is auto-reload on your code changes, I'm assuming one could ignore the tests
folder too.
当然可以,但是当您 运行 Ember 处于测试模式时,您不希望它在测试发生变化时重新运行您的测试吗?
很多人有守望者问题(超出限制等),我查看了Ember中的默认.watchmanconfig
。
看起来像这样:
{
"ignore_dirs": ["tmp", "dist"]
}
观看这两个文件夹当然有意义,但我想知道:为什么不也忽略 node_modules
?这样做有什么真正的缺点吗?
...why not also ignore node_modules?
如果你 install/upgrade 一个节点模块,你不希望它重新加载你的应用程序吗?
If all you need is auto-reload on your code changes, I'm assuming one could ignore the
tests
folder too.
当然可以,但是当您 运行 Ember 处于测试模式时,您不希望它在测试发生变化时重新运行您的测试吗?