From 063595d34f9d9aea56087e7297b03dec59906ce2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E3=82=A8=E3=83=AA=E3=82=B9?= Date: Sat, 2 Oct 2021 18:13:41 +0900 Subject: [PATCH] chore: cleanup git & npm ignore list (#141) --- .gitignore | 20 +++++++++++++++++--- .npmignore | 10 ++++++++++ 2 files changed, 27 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 45a72110..0b9b456e 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,20 @@ +# System files .DS_Store + +# Editors +.vscode + +# Testing, code coverage, and linting +.nyc_output +coverage +temp +.tmp + +# Logging +logs +*.log +npm-debug.log* + +# others node_modules .gitkeep -.tmp -.nyc_output/ -coverage/ diff --git a/.npmignore b/.npmignore index 79c6997b..b313f306 100644 --- a/.npmignore +++ b/.npmignore @@ -1 +1,11 @@ +# Config related files +.* + +# Testing, code coverage, and linting +coverage spec + +# Logging +logs +*.log +npm-debug.log*