From 06347a3374503b25ae0ca8ce36c5f4862b74f652 Mon Sep 17 00:00:00 2001 From: Anton Gilgur Date: Wed, 4 Dec 2019 15:40:07 -0500 Subject: [PATCH] (env/refactor): standardize .gitignore - basically the same one I use in all my other libraries - I believe it's an old version of Node output from gitignore.io iirc - it has comments unlike the old one, so that's much nicer for those who aren't totally sure what each entry is for --- .gitignore | 22 ++++++++++++++++++++-- 1 file changed, 20 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index ec63435..22f3621 100644 --- a/.gitignore +++ b/.gitignore @@ -1,10 +1,28 @@ +### custom ### + +# build output build/ +# test coverage output coverage/ +### Node ### + +# Logs +logs +*.log npm-debug.log* + +# Dependency directories node_modules/ +# Optional npm cache directory +.npm + +# Optional REPL history +.node_repl_history + +# Output of 'npm pack' *.tgz -.DS_Store -*~ +# dotenv environment variables file +.env