Skip to content

Commit ed0aa41

Browse files
committed
Update .gitignore
1 parent 04a138f commit ed0aa41

File tree

1 file changed

+49
-6
lines changed

1 file changed

+49
-6
lines changed

.gitignore

Lines changed: 49 additions & 6 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) 2018 GitHub, Inc.
3+
# which are Copyright (c) 2020 GitHub, Inc.
44
# and released under the MIT License.
55
# For more details, visit the project page:
66
# https://github.com/github/gitignore
@@ -27,6 +27,10 @@ logs
2727
npm-debug.log*
2828
yarn-debug.log*
2929
yarn-error.log*
30+
lerna-debug.log*
31+
32+
# Diagnostic reports (https://nodejs.org/api/report.html)
33+
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
3034

3135
# Runtime data
3236
pids
@@ -39,6 +43,7 @@ lib-cov
3943

4044
# Coverage directory used by tools like istanbul
4145
coverage
46+
*.lcov
4247

4348
# nyc test coverage
4449
.nyc_output
@@ -59,15 +64,24 @@ build/Release
5964
node_modules/
6065
jspm_packages/
6166

62-
# TypeScript v1 declaration files
63-
typings/
67+
# Snowpack dependency directory (https://snowpack.dev/)
68+
web_modules/
69+
70+
# TypeScript cache
71+
*.tsbuildinfo
6472

6573
# Optional npm cache directory
6674
.npm
6775

6876
# Optional eslint cache
6977
.eslintcache
7078

79+
# Microbundle cache
80+
.rpt2_cache/
81+
.rts2_cache_cjs/
82+
.rts2_cache_es/
83+
.rts2_cache_umd/
84+
7185
# Optional REPL history
7286
.node_repl_history
7387

@@ -79,18 +93,47 @@ typings/
7993

8094
# dotenv environment variables file
8195
.env
96+
.env.test
8297

8398
# parcel-bundler cache (https://parceljs.org/)
8499
.cache
100+
.parcel-cache
85101

86-
# next.js build output
102+
# Next.js build output
87103
.next
104+
out
88105

89-
# nuxt.js build output
106+
# Nuxt.js build / generate output
90107
.nuxt
108+
dist
109+
110+
# Gatsby files
111+
.cache/
112+
# Comment in the public line in if your project uses Gatsby and not Next.js
113+
# https://nextjs.org/blog/next-9-1#public-directory-support
114+
# public
91115

92116
# vuepress build output
93117
.vuepress/dist
94118

95119
# Serverless directories
96-
.serverless
120+
.serverless/
121+
122+
# FuseBox cache
123+
.fusebox/
124+
125+
# DynamoDB Local files
126+
.dynamodb/
127+
128+
# TernJS port file
129+
.tern-port
130+
131+
# Stores VSCode versions used for testing VSCode extensions
132+
.vscode-test
133+
134+
# yarn v2
135+
.yarn/cache
136+
.yarn/unplugged
137+
.yarn/build-state.yml
138+
.yarn/install-state.gz
139+
.pnp.*

0 commit comments

Comments
 (0)