Skip to content

Commit 8fb3ada

Browse files
committed
Update .gitignore for node
1 parent cff5137 commit 8fb3ada

1 file changed

Lines changed: 163 additions & 3 deletions

File tree

.gitignore

Lines changed: 163 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,170 @@
1+
# Parts of this file were adapted from
2+
# GitHub’s collection of .gitignore file templates
3+
# which are Copyright (c) 2023 GitHub, Inc.
4+
# and released under the MIT License.
5+
# For more details, visit the project page:
6+
# https://github.com/github/gitignore
7+
18
# Codegen
29
CODEGEN.md
310

11+
# Temporary development files
412
vendor
5-
node_modules
6-
.env
7-
.vscode
13+
tmp
14+
15+
# Build directories
16+
package
17+
18+
# Environment versions file
19+
.versions
20+
21+
# Tern
22+
.tern-project
23+
.tern-port
24+
25+
# npm config
26+
.npmrc
27+
28+
# Temporary development files
29+
tmp
30+
31+
# Yarn lockfile (only package-lock.json supported)
32+
yarn.lock
33+
34+
# Logs
35+
logs
36+
*.log
37+
npm-debug.log*
38+
yarn-debug.log*
39+
yarn-error.log*
40+
lerna-debug.log*
41+
.pnpm-debug.log*
42+
43+
# Diagnostic reports (https://nodejs.org/api/report.html)
44+
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
45+
46+
# Runtime data
47+
pids
48+
*.pid
49+
*.seed
50+
*.pid.lock
51+
52+
# Directory for instrumented libs generated by jscoverage/JSCover
53+
lib-cov
54+
55+
# Coverage directory used by tools like istanbul
56+
coverage
57+
*.lcov
58+
59+
# nyc test coverage
60+
.nyc_output
61+
62+
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
63+
.grunt
64+
65+
# Bower dependency directory (https://bower.io/)
66+
bower_components
67+
68+
# node-waf configuration
69+
.lock-wscript
70+
71+
# Compiled binary addons (https://nodejs.org/api/addons.html)
72+
build/Release
73+
74+
# Dependency directories
75+
node_modules/
76+
jspm_packages/
77+
78+
# Snowpack dependency directory (https://snowpack.dev/)
79+
web_modules/
880

981
# TypeScript cache
1082
*.tsbuildinfo
83+
84+
# Optional npm cache directory
85+
.npm
86+
87+
# Optional eslint cache
88+
.eslintcache
89+
90+
# Optional stylelint cache
91+
.stylelintcache
92+
93+
# Microbundle cache
94+
.rpt2_cache/
95+
.rts2_cache_cjs/
96+
.rts2_cache_es/
97+
.rts2_cache_umd/
98+
99+
# Optional REPL history
100+
.node_repl_history
101+
102+
# Output of 'npm pack'
103+
*.tgz
104+
105+
# Yarn Integrity file
106+
.yarn-integrity
107+
108+
# dotenv environment variable files
109+
.env
110+
.env.development.local
111+
.env.test.local
112+
.env.production.local
113+
.env.local
114+
115+
# parcel-bundler cache (https://parceljs.org/)
116+
.cache
117+
.parcel-cache
118+
119+
# Next.js build output
120+
.next
121+
out
122+
123+
# Nuxt.js build / generate output
124+
.nuxt
125+
dist
126+
127+
# Gatsby files
128+
.cache/
129+
# Comment in the public line in if your project uses Gatsby and not Next.js
130+
# https://nextjs.org/blog/next-9-1#public-directory-support
131+
# public
132+
133+
# vuepress build output
134+
.vuepress/dist
135+
136+
# vuepress v2.x temp and cache directory
137+
.temp
138+
.cache
139+
140+
# Docusaurus cache and generated files
141+
.docusaurus
142+
143+
# Serverless directories
144+
.serverless/
145+
146+
# FuseBox cache
147+
.fusebox/
148+
149+
# DynamoDB Local files
150+
.dynamodb/
151+
152+
# TernJS port file
153+
.tern-port
154+
155+
# Stores VSCode versions used for testing VSCode extensions
156+
.vscode-test
157+
158+
# yarn v2
159+
.yarn/cache
160+
.yarn/unplugged
161+
.yarn/build-state.yml
162+
.yarn/install-state.gz
163+
.pnp.*
164+
165+
# yalc
166+
.yalc/
167+
yalc.lock
168+
169+
# Codegen exceptions
170+
!codegen/lib/

0 commit comments

Comments
 (0)