From cd35c6731f824d423ac0e6e57a29d2d0bbb11f4a Mon Sep 17 00:00:00 2001 From: ahocevar Date: Fri, 22 Jun 2018 13:43:50 +0200 Subject: [PATCH] Ignore node_modules everywhere This allows users to use npm link directly from src/ol, without risiking to commit the src/ol/node_modules directory. --- .gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 8bce1f63bb..749803a845 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,5 @@ /build/ /coverage/ /dist/ -/node_modules/ +node_modules/ src/index.js