From f941fe879b4a428fa5eb0ea72d36a008d9a44bc7 Mon Sep 17 00:00:00 2001 From: Joel Kuzmarski Date: Mon, 10 Apr 2017 05:43:53 -0500 Subject: [PATCH] ignore node_modules for docs/modules Although it is not necessary to run `npm install` in the docs/modules submodule repos to make and use code or documentation changes, one might still run `npm install` in order to run the tests for that submodule. --- package.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index 27d5d30..e82dfdb 100644 --- a/package.json +++ b/package.json @@ -57,7 +57,8 @@ "**/*_test.js", "**/test_*.js", "**/test-*.md", - "**/test.js" + "**/test.js", + "**/node_modules/**/*" ] }, "parent": "BitDocs",