node_modules should be removed from the repo
haxwell opened this issue · 5 comments
haxwell commented
Usually, node_modules should not be checked in to the repo.
If anyone needs it, they can just run npm install.
I suggest we remove it, and add the entire node_modules/ directory to the .gitignore.
Also, we should add .idea/ to the .gitignore (intellij project files).
haxwell commented
Noted! I understand why node_modules/ is committed to the repo.
What are your thoughts on adding .idea/ to the .gitignore?
pinheadmz commented
I think that has also been brought up in other issues here but that kind of file can be ignored using a master ignore file on your own computer. For example as an OSX user I have to globally ignore DS_Store
haxwell commented
Great tip!