Skip to content

Commit c169a37

Browse files
committed
Updates .gitignore, to ignore build assets
1 parent d26f5b2 commit c169a37

File tree

1 file changed

+50
-17
lines changed

1 file changed

+50
-17
lines changed

.gitignore

Lines changed: 50 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,60 @@
1-
2-
# keys
1+
# ------------------------
2+
# ENVIRONMENT SETTINGS
3+
# ------------------------
34
.env
45

5-
# dependencies
6-
/node_modules
7-
/.pnp
8-
.pnp.js
6+
# ------------------------
7+
# PRODUCTION
8+
# ------------------------
9+
/build/
10+
11+
# ------------------------
12+
# DEPLOYMENT
13+
# ------------------------
14+
.vercel/
15+
.netlify/
16+
.webpack/
17+
.serverless/
18+
19+
# ------------------------
20+
# DEPENDENCIES
21+
# ------------------------
22+
node_modules/
23+
.yarn/cache/
24+
.yarn/unplugged/
25+
.yarn/build-state.yml
26+
.yarn/install-state.gz
27+
.pnpm/
28+
.pnp.*
929

10-
# logs
30+
# ------------------------
31+
# LOGS
32+
# ------------------------
33+
logs/
34+
*.log
1135
npm-debug.log*
1236
yarn-debug.log*
1337
yarn-error.log*
38+
lerna-debug.log*
39+
.pnpm-debug.log*
1440

15-
# testing
16-
/coverage
41+
# ------------------------
42+
# TESTING
43+
# ------------------------
44+
coverage/
45+
.nyc_output/
1746

18-
# production
19-
/build
47+
# ------------------------
48+
# OS SPECIFIC
49+
# ------------------------
50+
.DS_Store
51+
Thumbs.db
2052

21-
# Random AWS and Netlify crap
22-
.netlify
23-
.serverless
24-
.webpack
53+
# ------------------------
54+
# EDITORS
55+
# ------------------------
56+
.idea/
57+
.vscode/
58+
*.swp
59+
*.swo
2560

26-
# OS generated files
27-
.DS_Store

0 commit comments

Comments
 (0)