From 50681b0247537b3bb7c4daf9dd28b1997b49e895 Mon Sep 17 00:00:00 2001 From: Kiryl Yermakou Date: Thu, 25 Aug 2022 20:07:17 -0400 Subject: [PATCH] chore(git): ignoring artifacts --- .gitignore | 7 ++++--- .npmignore | 19 +++++++++++++++++++ 2 files changed, 23 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 31c9c9c6..dcd461fd 100644 --- a/.gitignore +++ b/.gitignore @@ -1,7 +1,4 @@ node_modules -.env -coverage -coverage.json typechain examples/metamask/chain*.json examples/metamask/abi/**.json @@ -37,6 +34,7 @@ lib-cov # Coverage directory used by tools like istanbul coverage +coverage.json *.lcov # nyc test coverage @@ -118,3 +116,6 @@ dist # TernJS port file .tern-port + +# Build +artifacts diff --git a/.npmignore b/.npmignore index e69de29b..6a8f749b 100644 --- a/.npmignore +++ b/.npmignore @@ -0,0 +1,19 @@ +# Modules +node_modules + +# dotenv environment variables file +.env +.env.test + +# Logs +logs +*.log + +# Optional npm cache directory +.npm + +# builder cache +.cache + +# workflows +.github