bobtownsend
11/7/2017 - 5:58 PM

Remove node_modules folder from git repo

Remove node_modules folder from git repo

#add 'node_modules' to .gitignore file

git rm -r --cached node_modules
git commit -m 'Remove the now ignored directory node_modules'
git push origin master