我刚刚发现了Grunt的力量并且有一个非常基本的问题。 Grunt创建了一个名为node_modules
的目录以及package.json
和Gruntfile.js
个文件。当我查看Git repositories of other projects时,我看到Gruntfile.js
和package.json
文件已提交,但node_module
目录未提交。为什么呢?
有关node_modules
目录和其他两个文件的最佳做法是什么?
答案 0 :(得分:1)
您必须在生产中运行npm install
并忽略您的存储库中的node_modules
。
node_modules
可以为您提供已编译的本机模块,例如,平台和服务器平台可以不同。