Skip to content

Commit 210a6bd

Browse files
committed
chore: update .gitignore
1 parent f0b4089 commit 210a6bd

File tree

1 file changed

+48
-8
lines changed

1 file changed

+48
-8
lines changed

.gitignore

+48-8
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,17 @@
1-
### https://raw.github.com/github/gitignore/4a8e0a151becd5ccbb83e4aca6e6c195f3d506fd/Node.gitignore
1+
/dist
2+
3+
### https://raw.github.com/github/gitignore/218a941be92679ce67d0484547e3e142b2f5f6f0/Node.gitignore
24

35
# Logs
46
logs
57
*.log
68
npm-debug.log*
79
yarn-debug.log*
810
yarn-error.log*
11+
lerna-debug.log*
12+
13+
# Diagnostic reports (https://nodejs.org/api/report.html)
14+
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
915

1016
# Runtime data
1117
pids
@@ -18,6 +24,7 @@ lib-cov
1824

1925
# Coverage directory used by tools like istanbul
2026
coverage
27+
*.lcov
2128

2229
# nyc test coverage
2330
.nyc_output
@@ -38,15 +45,24 @@ build/Release
3845
node_modules/
3946
jspm_packages/
4047

41-
# TypeScript v1 declaration files
42-
typings/
48+
# Snowpack dependency directory (https://snowpack.dev/)
49+
web_modules/
50+
51+
# TypeScript cache
52+
*.tsbuildinfo
4353

4454
# Optional npm cache directory
4555
.npm
4656

4757
# Optional eslint cache
4858
.eslintcache
4959

60+
# Microbundle cache
61+
.rpt2_cache/
62+
.rts2_cache_cjs/
63+
.rts2_cache_es/
64+
.rts2_cache_umd/
65+
5066
# Optional REPL history
5167
.node_repl_history
5268

@@ -58,25 +74,49 @@ typings/
5874

5975
# dotenv environment variables file
6076
.env
77+
.env.test
6178

6279
# parcel-bundler cache (https://parceljs.org/)
6380
.cache
81+
.parcel-cache
6482

65-
# next.js build output
83+
# Next.js build output
6684
.next
85+
out
6786

68-
# nuxt.js build output
87+
# Nuxt.js build / generate output
6988
.nuxt
89+
dist
90+
91+
# Gatsby files
92+
.cache/
93+
# Comment in the public line in if your project uses Gatsby and not Next.js
94+
# https://nextjs.org/blog/next-9-1#public-directory-support
95+
# public
7096

7197
# vuepress build output
7298
.vuepress/dist
7399

74100
# Serverless directories
75-
.serverless
101+
.serverless/
76102

77103
# FuseBox cache
78104
.fusebox/
79105

106+
# DynamoDB Local files
107+
.dynamodb/
108+
109+
# TernJS port file
110+
.tern-port
111+
112+
# Stores VSCode versions used for testing VSCode extensions
113+
.vscode-test
114+
115+
# yarn v2
116+
.yarn/cache
117+
.yarn/unplugged
118+
.yarn/build-state.yml
119+
.yarn/install-state.gz
120+
.pnp.*
121+
80122

81-
### project
82-
/dist

0 commit comments

Comments
 (0)