From e109ba6b2c4d2bcf4b0f4c0aa7a60855a3cf0c12 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?I=C3=B1aki=20Baz=20Castillo?= Date: Wed, 24 Apr 2019 16:38:40 +0200 Subject: [PATCH] Include .git/ into .npmignore (fix #353) - When .npmignore file is present, the content of the .gitignore file is ignored. - So also include more files and folders in .npmignore file. --- .gitignore | 5 ++--- .npmignore | 7 ++++++- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index 10cbcbeb..ba3ad330 100644 --- a/.gitignore +++ b/.gitignore @@ -1,8 +1,7 @@ -node_modules +node_modules/ .DS_Store .lock-* -build -build/* +build/ builderror.log npm-debug.log test/autobahn/reports*/* diff --git a/.npmignore b/.npmignore index d040b5c0..4718deae 100644 --- a/.npmignore +++ b/.npmignore @@ -1,7 +1,12 @@ .npmignore .gitignore +.git/ +.DS_Store +.lock-* +node_modules/ docs/ example/ build/ +builderror.log +npm-debug.log test/ -node_modules/