Updates .gitignore, to ignore build assets

This commit is contained in:
Alicia Sykes 2023-09-03 16:28:43 +01:00
parent d26f5b26a7
commit c169a3762d

69
.gitignore vendored
View file

@ -1,27 +1,60 @@
# ------------------------
# keys # ENVIRONMENT SETTINGS
# ------------------------
.env .env
# dependencies # ------------------------
/node_modules # PRODUCTION
/.pnp # ------------------------
.pnp.js /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* npm-debug.log*
yarn-debug.log* yarn-debug.log*
yarn-error.log* yarn-error.log*
lerna-debug.log*
.pnpm-debug.log*
# testing # ------------------------
/coverage # TESTING
# ------------------------
coverage/
.nyc_output/
# production # ------------------------
/build # OS SPECIFIC
# ------------------------
# Random AWS and Netlify crap
.netlify
.serverless
.webpack
# OS generated files
.DS_Store .DS_Store
Thumbs.db
# ------------------------
# EDITORS
# ------------------------
.idea/
.vscode/
*.swp
*.swo