Skip to content
This repository was archived by the owner on Sep 20, 2024. It is now read-only.

Commit cfc0df4

Browse files
committed
chore: update gitignore
1 parent 6a866fa commit cfc0df4

File tree

1 file changed

+95
-2
lines changed

1 file changed

+95
-2
lines changed

.gitignore

Lines changed: 95 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,99 @@
1-
node_modules
21
dist
32
# playground/src/.generated/*
43
.vercel
54
yarn-error.log
6-
test-vite-project
5+
test-vite-project
6+
7+
# Logs
8+
logs
9+
*.log
10+
npm-debug.log*
11+
yarn-debug.log*
12+
yarn-error.log*
13+
lerna-debug.log*
14+
15+
# Diagnostic reports (https://nodejs.org/api/report.html)
16+
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
17+
18+
# Runtime data
19+
pids
20+
*.pid
21+
*.seed
22+
*.pid.lock
23+
24+
# Directory for instrumented libs generated by jscoverage/JSCover
25+
lib-cov
26+
27+
# Coverage directory used by tools like istanbul
28+
coverage
29+
*.lcov
30+
31+
# nyc test coverage
32+
.nyc_output
33+
34+
# Compiled binary addons (https://nodejs.org/api/addons.html)
35+
build/Release
36+
37+
# Dependency directories
38+
node_modules/
39+
jspm_packages/
40+
41+
# Snowpack dependency directory (https://snowpack.dev/)
42+
web_modules/
43+
44+
# TypeScript cache
45+
*.tsbuildinfo
46+
47+
# Optional npm cache directory
48+
.npm
49+
50+
# Optional eslint cache
51+
.eslintcache
52+
53+
# Microbundle cache
54+
.rpt2_cache/
55+
.rts2_cache_cjs/
56+
.rts2_cache_es/
57+
.rts2_cache_umd/
58+
59+
# Optional REPL history
60+
.node_repl_history
61+
62+
# Output of 'npm pack'
63+
*.tgz
64+
65+
# Yarn Integrity file
66+
.yarn-integrity
67+
68+
# dotenv environment variables file
69+
.env
70+
.env.test
71+
72+
# Next.js build output
73+
.next
74+
out
75+
76+
# Nuxt.js build / generate output
77+
.nuxt
78+
dist
79+
80+
.cache/
81+
82+
# vuepress build output
83+
.vuepress/dist
84+
85+
# Serverless directories
86+
.serverless/
87+
88+
# Stores VSCode versions used for testing VSCode extensions
89+
.vscode-test
90+
91+
# yarn v2
92+
.yarn/cache
93+
.yarn/unplugged
94+
.yarn/build-state.yml
95+
.yarn/install-state.gz
96+
.pnp.*
97+
98+
# vscode history extension
99+
.history

0 commit comments

Comments
 (0)