Skip to content

Commit c56f18b

Browse files
committed
Updated .gitignore
1 parent 68168b1 commit c56f18b

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
@@ -10,6 +10,10 @@ logs
1010
npm-debug.log*
1111
yarn-debug.log*
1212
yarn-error.log*
13+
lerna-debug.log*
14+
15+
# Diagnostic reports (https://nodejs.org/api/report.html)
16+
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
1317

1418
# Runtime data
1519
pids
@@ -22,11 +26,12 @@ lib-cov
2226

2327
# Coverage directory used by tools like istanbul
2428
coverage
29+
*.lcov
2530

2631
# nyc test coverage
2732
.nyc_output
2833

29-
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
34+
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
3035
.grunt
3136

3237
# Bower dependency directory (https://bower.io/)
@@ -42,15 +47,24 @@ build/Release
4247
node_modules/
4348
jspm_packages/
4449

45-
# TypeScript v1 declaration files
46-
typings/
50+
# Snowpack dependency directory (https://snowpack.dev/)
51+
web_modules/
52+
53+
# TypeScript cache
54+
*.tsbuildinfo
4755

4856
# Optional npm cache directory
4957
.npm
5058

5159
# Optional eslint cache
5260
.eslintcache
5361

62+
# Microbundle cache
63+
.rpt2_cache/
64+
.rts2_cache_cjs/
65+
.rts2_cache_es/
66+
.rts2_cache_umd/
67+
5468
# Optional REPL history
5569
.node_repl_history
5670

@@ -62,18 +76,47 @@ typings/
6276

6377
# dotenv environment variables file
6478
.env
79+
.env.test
6580

6681
# parcel-bundler cache (https://parceljs.org/)
6782
.cache
83+
.parcel-cache
6884

69-
# next.js build output
85+
# Next.js build output
7086
.next
87+
out
7188

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

7599
# vuepress build output
76100
.vuepress/dist
77101

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

0 commit comments

Comments
 (0)