Skip to content

Commit 09bfd0a

Browse files
feat: update .gitignore file
1 parent 8ca387f commit 09bfd0a

File tree

1 file changed

+140
-4
lines changed

1 file changed

+140
-4
lines changed

.gitignore

Lines changed: 140 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,33 +4,169 @@
44
node_modules
55
.pnp
66
.pnp.js
7+
./package-lock.json
8+
package-lock.json
79

810
# testing
911
coverage
1012

1113
# next.js
1214
.next/
1315
out/
14-
build
16+
17+
# production
18+
/build
1519

1620
# misc
1721
.DS_Store
1822
*.pem
1923

20-
# debug
24+
# Logs
25+
logs
26+
*.log
2127
npm-debug.log*
2228
yarn-debug.log*
2329
yarn-error.log*
30+
lerna-debug.log*
2431
.pnpm-debug.log*
2532

26-
# local env files
33+
# dotenv environment variable files
34+
.env*.local
2735
.env.local
2836
.env.development.local
2937
.env.test.local
3038
.env.production.local
39+
.env
3140

3241
# turbo
3342
.turbo
3443

3544
.contentlayer
36-
.env
45+
46+
# vercel
47+
.vercel
48+
49+
# typescript cache
50+
*.tsbuildinfo
51+
52+
# typeScript declaration
53+
next-env.d.ts
54+
55+
# Diagnostic reports (https://nodejs.org/api/report.html)
56+
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
57+
58+
# Runtime data
59+
pids
60+
*.pid
61+
*.seed
62+
*.pid.lock
63+
64+
# Directory for instrumented libs generated by jscoverage/JSCover
65+
lib-cov
66+
67+
# Coverage directory used by tools like istanbul
68+
*.lcov
69+
70+
# nyc test coverage
71+
.nyc_output
72+
73+
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
74+
.grunt
75+
76+
# Bower dependency directory (https://bower.io/)
77+
bower_components
78+
79+
# node-waf configuration
80+
.lock-wscript
81+
82+
# Compiled binary addons (https://nodejs.org/api/addons.html)
83+
build/Release
84+
85+
# Dependency directories
86+
node_modules/
87+
jspm_packages/
88+
89+
# Snowpack dependency directory (https://snowpack.dev/)
90+
web_modules/
91+
92+
# Optional npm cache directory
93+
.npm
94+
95+
# Optional eslint cache
96+
.eslintcache
97+
98+
# Optional stylelint cache
99+
.stylelintcache
100+
101+
# Microbundle cache
102+
.rpt2_cache/
103+
.rts2_cache_cjs/
104+
.rts2_cache_es/
105+
.rts2_cache_umd/
106+
107+
# Optional REPL history
108+
.node_repl_history
109+
110+
# Output of 'npm pack'
111+
*.tgz
112+
113+
# Yarn Integrity file
114+
.yarn-integrity
115+
116+
# parcel-bundler cache (https://parceljs.org/)
117+
.cache
118+
.parcel-cache
119+
120+
# Next.js build output
121+
.next
122+
out
123+
124+
# Nuxt.js build / generate output
125+
.nuxt
126+
dist
127+
128+
# Gatsby files
129+
.cache/
130+
131+
# Comment in the public line in if your project uses Gatsby and not Next.js
132+
# https://nextjs.org/blog/next-9-1#public-directory-support
133+
# public
134+
# vuepress build output
135+
.vuepress/dist
136+
137+
# vuepress v2.x temp and cache directory
138+
.temp
139+
.cache
140+
141+
# Docusaurus cache and generated files
142+
.docusaurus
143+
144+
# Serverless directories
145+
.serverless/
146+
147+
# FuseBox cache
148+
.fusebox/
149+
150+
# DynamoDB Local files
151+
.dynamodb/
152+
153+
# TernJS port file
154+
.tern-port
155+
156+
# Stores VSCode versions used for testing VSCode extensions
157+
.vscode-test
158+
.vscode
159+
160+
# yarn v2
161+
.yarn/cache
162+
.yarn/unplugged
163+
.yarn/build-state.yml
164+
.yarn/install-state.gz
165+
.pnp.*
166+
167+
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
168+
# dependencies
169+
/pnp.js
170+
171+
# Runtime data
172+
*.pid.lock

0 commit comments

Comments
 (0)