Glog
Glog copied to clipboard
node_modules
Since this is a platform and not a library, have you considered add node_modules to git?
I have gone back and forth with this and now I generally add node_modules to projects that aren't libraries where I want to know exactly what versions of dependencies are running.
Are you for adding node_modules to Glog's git or should we just .gitignore them?
I like to try to keep the project up to date with the latest libraries. In order to make sure people are using a version of the libraries that work with Glog, using npm shrinkwrap might be a better choice. It locks down your dependencies so when you run npm install, you get an exact replica of the dependencies from when npm shirnkwrap was run.
This would avoid issues like the one with Jade
I think shrinkwrap is a good choice.