Skip to content

Commit 401b039

Browse files
committed
Update gitignore
1 parent 4d3d27e commit 401b039

File tree

1 file changed

+27
-4
lines changed

1 file changed

+27
-4
lines changed

.gitignore

Lines changed: 27 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ npm-debug.log*
55
yarn-debug.log*
66
yarn-error.log*
77
lerna-debug.log*
8+
.pnpm-debug.log*
89

910
# Diagnostic reports (https://nodejs.org/api/report.html)
1011
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
@@ -41,8 +42,8 @@ build/Release
4142
node_modules/
4243
jspm_packages/
4344

44-
# TypeScript v1 declaration files
45-
typings/
45+
# Snowpack dependency directory (https://snowpack.dev/)
46+
web_modules/
4647

4748
# TypeScript cache
4849
*.tsbuildinfo
@@ -53,6 +54,9 @@ typings/
5354
# Optional eslint cache
5455
.eslintcache
5556

57+
# Optional stylelint cache
58+
.stylelintcache
59+
5660
# Microbundle cache
5761
.rpt2_cache/
5862
.rts2_cache_cjs/
@@ -68,28 +72,37 @@ typings/
6872
# Yarn Integrity file
6973
.yarn-integrity
7074

71-
# dotenv environment variables file
75+
# dotenv environment variable files
7276
.env*
7377

7478
# parcel-bundler cache (https://parceljs.org/)
7579
.cache
80+
.parcel-cache
7681

7782
# Next.js build output
7883
.next
84+
out
7985

8086
# Nuxt.js build / generate output
8187
.nuxt
8288
dist*
8389

8490
# Gatsby files
8591
.cache/
86-
# Comment in the public line in if your project uses Gatsby and *not* Next.js
92+
# Comment in the public line in if your project uses Gatsby and not Next.js
8793
# https://nextjs.org/blog/next-9-1#public-directory-support
8894
# public
8995

9096
# vuepress build output
9197
.vuepress/dist
9298

99+
# vuepress v2.x temp and cache directory
100+
.temp
101+
.cache
102+
103+
# Docusaurus cache and generated files
104+
.docusaurus
105+
93106
# Serverless directories
94107
.serverless/
95108

@@ -102,6 +115,16 @@ dist*
102115
# TernJS port file
103116
.tern-port
104117

118+
# Stores VSCode versions used for testing VSCode extensions
119+
.vscode-test
120+
121+
# yarn v2
122+
.yarn/cache
123+
.yarn/unplugged
124+
.yarn/build-state.yml
125+
.yarn/install-state.gz
126+
.pnp.*
127+
105128
# Playwright
106129
tests/e2e/results/
107130
/test-results/

0 commit comments

Comments
 (0)