From aa1a01700268ee899894d06c3f561ab68b58de64 Mon Sep 17 00:00:00 2001 From: Hawken Rives Date: Fri, 28 Sep 2018 02:33:57 -0500 Subject: [PATCH] Add docs.json to gitignore (#837) [skip ci] MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit See also https://github.com/date-fns/date-fns/issues/524 npm will use `.gitignore` if you don't provide an `.npmignore`, so I added it to .gitignore since it's a build artifact AFAICT. ``` npm notice npm notice 📦 date-fns@1.29.0 npm notice === Tarball Contents === npm notice 3.6kB package.json npm notice 26.6kB CHANGELOG.md npm notice 291.3kB docs.json ... ``` --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 8d7a3fb416..a653f35d7b 100644 --- a/.gitignore +++ b/.gitignore @@ -3,5 +3,6 @@ npm-debug.log* tmp dist .envrc +docs.json .idea .vscode