What should I put in a meteor .gitignore file?

后端 未结 15 978
一向
一向 2021-01-30 19:14

I have a new meteor project. I\'m guessing the .meteor dir has a combination of configuration files (needed) and temporary files (not needed).

So what\'s i

15条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2021-01-30 19:37

    With meteor 1.3 you want to also ignore node_modules. There is no reason to have all of the libraries added to git because you can install them through npm. The node_modules folder most likely is larger than your app (excluding the .meteor/local folder)

提交回复
热议问题