Skip to content

Commit fdc46c3

Browse files
committed
chore: update gitignore
1 parent 406a239 commit fdc46c3

File tree

1 file changed

+25
-16
lines changed

1 file changed

+25
-16
lines changed

.gitignore

Lines changed: 25 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,6 @@ npm-debug.log*
3434
yarn-debug.log*
3535
yarn-error.log*
3636
lerna-debug.log*
37-
.pnpm-debug.log*
3837

3938
# Diagnostic reports (https://nodejs.org/api/report.html)
4039
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
@@ -86,12 +85,6 @@ web_modules/
8685
# Optional stylelint cache
8786
.stylelintcache
8887

89-
# Microbundle cache
90-
.rpt2_cache/
91-
.rts2_cache_cjs/
92-
.rts2_cache_es/
93-
.rts2_cache_umd/
94-
9588
# Optional REPL history
9689
.node_repl_history
9790

@@ -103,10 +96,8 @@ web_modules/
10396

10497
# dotenv environment variable files
10598
.env
106-
.env.development.local
107-
.env.test.local
108-
.env.production.local
109-
.env.local
99+
.env.*
100+
!.env.example
110101

111102
# parcel-bundler cache (https://parceljs.org/)
112103
.cache
@@ -133,6 +124,15 @@ dist
133124
.temp
134125
.cache
135126

127+
# Sveltekit cache directory
128+
.svelte-kit/
129+
130+
# vitepress build output
131+
**/.vitepress/dist
132+
133+
# vitepress cache directory
134+
**/.vitepress/cache
135+
136136
# Docusaurus cache and generated files
137137
.docusaurus
138138

@@ -145,15 +145,24 @@ dist
145145
# DynamoDB Local files
146146
.dynamodb/
147147

148+
# Firebase cache directory
149+
.firebase/
150+
148151
# TernJS port file
149152
.tern-port
150153

151154
# Stores VSCode versions used for testing VSCode extensions
152155
.vscode-test
153156

154-
# yarn v2
155-
.yarn/cache
156-
.yarn/unplugged
157-
.yarn/build-state.yml
158-
.yarn/install-state.gz
157+
# yarn v3
159158
.pnp.*
159+
.yarn/*
160+
!.yarn/patches
161+
!.yarn/plugins
162+
!.yarn/releases
163+
!.yarn/sdks
164+
!.yarn/versions
165+
166+
# Vite logs files
167+
vite.config.js.timestamp-*
168+
vite.config.ts.timestamp-*

0 commit comments

Comments
 (0)