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
2727npm-debug.log *
2828yarn-debug.log *
2929yarn-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
3236pids
@@ -39,6 +43,7 @@ lib-cov
3943
4044# Coverage directory used by tools like istanbul
4145coverage
46+ * .lcov
4247
4348# nyc test coverage
4449.nyc_output
@@ -59,15 +64,24 @@ build/Release
5964node_modules /
6065jspm_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