Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
很多人都有守望者问题(超出限制等),我查看了.watchmanconfigEmber 中的默认设置。
.watchmanconfig
它看起来像这样:
{ "ignore_dirs": ["tmp", "dist"] }
观看这两个文件夹当然是有意义的,但我想知道:为什么不也忽略node_modules?这样做有什么真正的缺点吗?
node_modules
...为什么不也忽略 node_modules?
如果您安装/升级节点模块,您不希望它重新加载您的应用程序吗?
如果您只需要在代码更改时自动重新加载,我假设您也可以忽略该tests文件夹。
tests
当然可以,但是当您在测试模式下运行 Ember 时,您不希望它在测试发生变化时重新运行您的测试吗?