Skip to content

Commit ba10c7d

Browse files
committed
Update .gitignore
1 parent d5d4c23 commit ba10c7d

File tree

1 file changed

+27
-17
lines changed

1 file changed

+27
-17
lines changed

.gitignore

Lines changed: 27 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,8 @@ package
2828
# Temporary development files
2929
tmp
3030

31-
# Yarn lockfile (only package-lock.json supported)
31+
# Other lockfiles (only package-lock.json supported)
32+
pnpm-lock.yaml
3233
yarn.lock
3334

3435
# Logs
@@ -38,7 +39,6 @@ npm-debug.log*
3839
yarn-debug.log*
3940
yarn-error.log*
4041
lerna-debug.log*
41-
.pnpm-debug.log*
4242

4343
# Diagnostic reports (https://nodejs.org/api/report.html)
4444
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
@@ -90,12 +90,6 @@ web_modules/
9090
# Optional stylelint cache
9191
.stylelintcache
9292

93-
# Microbundle cache
94-
.rpt2_cache/
95-
.rts2_cache_cjs/
96-
.rts2_cache_es/
97-
.rts2_cache_umd/
98-
9993
# Optional REPL history
10094
.node_repl_history
10195

@@ -107,10 +101,8 @@ web_modules/
107101

108102
# dotenv environment variable files
109103
.env
110-
.env.development.local
111-
.env.test.local
112-
.env.production.local
113-
.env.local
104+
.env.*
105+
!.env.example
114106

115107
# parcel-bundler cache (https://parceljs.org/)
116108
.cache
@@ -137,6 +129,15 @@ dist
137129
.temp
138130
.cache
139131

132+
# Sveltekit cache directory
133+
.svelte-kit/
134+
135+
# vitepress build output
136+
**/.vitepress/dist
137+
138+
# vitepress cache directory
139+
**/.vitepress/cache
140+
140141
# Docusaurus cache and generated files
141142
.docusaurus
142143

@@ -149,18 +150,27 @@ dist
149150
# DynamoDB Local files
150151
.dynamodb/
151152

153+
# Firebase cache directory
154+
.firebase/
155+
152156
# TernJS port file
153157
.tern-port
154158

155159
# Stores VSCode versions used for testing VSCode extensions
156160
.vscode-test
157161

158-
# yarn v2
159-
.yarn/cache
160-
.yarn/unplugged
161-
.yarn/build-state.yml
162-
.yarn/install-state.gz
162+
# yarn v3
163163
.pnp.*
164+
.yarn/*
165+
!.yarn/patches
166+
!.yarn/plugins
167+
!.yarn/releases
168+
!.yarn/sdks
169+
!.yarn/versions
170+
171+
# Vite logs files
172+
vite.config.js.timestamp-*
173+
vite.config.ts.timestamp-*
164174

165175
# Windows
166176

0 commit comments

Comments
 (0)