Skip to content

Commit 76d23de

Browse files
committed
Update .gitignore
1 parent aecd0d0 commit 76d23de

File tree

1 file changed

+21
-4
lines changed

1 file changed

+21
-4
lines changed

.gitignore

Lines changed: 21 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Parts of this file were adapted from
22
# GitHub’s collection of .gitignore file templates
3-
# which are Copyright (c) 2020 GitHub, Inc.
3+
# which are Copyright (c) 2022 GitHub, Inc.
44
# and released under the MIT License.
55
# For more details, visit the project page:
66
# https://github.com/github/gitignore
@@ -18,7 +18,10 @@ test/dest
1818
# npm config
1919
.npmrc
2020

21-
# Yarn lockfile (only npm supported)
21+
# Temporary development files
22+
tmp
23+
24+
# Yarn lockfile (only package-lock.json supported)
2225
yarn.lock
2326

2427
# Logs
@@ -28,6 +31,7 @@ npm-debug.log*
2831
yarn-debug.log*
2932
yarn-error.log*
3033
lerna-debug.log*
34+
.pnpm-debug.log*
3135

3236
# Diagnostic reports (https://nodejs.org/api/report.html)
3337
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
@@ -76,6 +80,9 @@ web_modules/
7680
# Optional eslint cache
7781
.eslintcache
7882

83+
# Optional stylelint cache
84+
.stylelintcache
85+
7986
# Microbundle cache
8087
.rpt2_cache/
8188
.rts2_cache_cjs/
@@ -91,9 +98,12 @@ web_modules/
9198
# Yarn Integrity file
9299
.yarn-integrity
93100

94-
# dotenv environment variables file
101+
# dotenv environment variable files
95102
.env
96-
.env.test
103+
.env.development.local
104+
.env.test.local
105+
.env.production.local
106+
.env.local
97107

98108
# parcel-bundler cache (https://parceljs.org/)
99109
.cache
@@ -116,6 +126,13 @@ dist
116126
# vuepress build output
117127
.vuepress/dist
118128

129+
# vuepress v2.x temp and cache directory
130+
.temp
131+
.cache
132+
133+
# Docusaurus cache and generated files
134+
.docusaurus
135+
119136
# Serverless directories
120137
.serverless/
121138

0 commit comments

Comments
 (0)