From c169a3762df50b8fddcc8d4a39329638abb684ce Mon Sep 17 00:00:00 2001 From: Alicia Sykes Date: Sun, 3 Sep 2023 16:28:43 +0100 Subject: [PATCH] Updates .gitignore, to ignore build assets --- .gitignore | 69 ++++++++++++++++++++++++++++++++++++++++-------------- 1 file changed, 51 insertions(+), 18 deletions(-) diff --git a/.gitignore b/.gitignore index 490b66c..9c077d8 100644 --- a/.gitignore +++ b/.gitignore @@ -1,27 +1,60 @@ - -# keys +# ------------------------ +# ENVIRONMENT SETTINGS +# ------------------------ .env -# dependencies -/node_modules -/.pnp -.pnp.js +# ------------------------ +# PRODUCTION +# ------------------------ +/build/ -# logs +# ------------------------ +# DEPLOYMENT +# ------------------------ +.vercel/ +.netlify/ +.webpack/ +.serverless/ + +# ------------------------ +# DEPENDENCIES +# ------------------------ +node_modules/ +.yarn/cache/ +.yarn/unplugged/ +.yarn/build-state.yml +.yarn/install-state.gz +.pnpm/ +.pnp.* + +# ------------------------ +# LOGS +# ------------------------ +logs/ +*.log npm-debug.log* yarn-debug.log* yarn-error.log* +lerna-debug.log* +.pnpm-debug.log* -# testing -/coverage +# ------------------------ +# TESTING +# ------------------------ +coverage/ +.nyc_output/ -# production -/build - -# Random AWS and Netlify crap -.netlify -.serverless -.webpack - -# OS generated files +# ------------------------ +# OS SPECIFIC +# ------------------------ .DS_Store +Thumbs.db + +# ------------------------ +# EDITORS +# ------------------------ +.idea/ +.vscode/ +*.swp +*.swo +