diff --git a/.gitignore b/.gitignore index 1b920d414..6db6ff8e7 100644 --- a/.gitignore +++ b/.gitignore @@ -1,15 +1,23 @@ +# dependencies node_modules -# dependencies, yarn, etc -# yarn / eslint +# yarn .yarn/* !.yarn/patches !.yarn/plugins !.yarn/releases !.yarn/sdks !.yarn/versions + +# eslint .eslintcache + +# misc .DS_Store + +# IDE .vscode .idea -.vercel + +# cli +dist diff --git a/packages/hardhat/.gitignore b/packages/hardhat/.gitignore index be5e27655..dc3ed2793 100644 --- a/packages/hardhat/.gitignore +++ b/packages/hardhat/.gitignore @@ -1,17 +1,27 @@ +# dependencies node_modules + +# env files .env + +# coverage coverage coverage.json + +# typechain typechain typechain-types -temp -#Hardhat files +# hardhat files cache artifacts -#zkSync files +# zkSync files artifacts-zk cache-zk +# deployments deployments/localhost + +# other +temp diff --git a/packages/nextjs/.gitignore b/packages/nextjs/.gitignore index 81eda21d1..d5e09402a 100644 --- a/packages/nextjs/.gitignore +++ b/packages/nextjs/.gitignore @@ -11,6 +11,7 @@ # next.js /.next/ /out/ +.vercel # production /build @@ -34,4 +35,3 @@ yarn-error.log* # typescript *.tsbuildinfo -.vercel