From b600d877f11e7b5ea55d1eb8a47391f8797883e4 Mon Sep 17 00:00:00 2001 From: Dan Harper Date: Sun, 1 Feb 2015 11:16:11 +0000 Subject: [PATCH] Add "node_modules" to .gitignore Seems sensible if Laravel's going to push Elixir. A person unfamiliar with the node ecosystem should be able to use Elixir with ease, however I don't feel they should necessarily know up-front that they should add node_modules to their global .gitignore file. --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index fadc7c17..c47965c2 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ /vendor +/node_modules .env