1
1
# Parts of this file were adapted from
2
2
# GitHub’s collection of .gitignore file templates
3
- # which are Copyright (c) 2018 GitHub, Inc.
3
+ # which are Copyright (c) 2020 GitHub, Inc.
4
4
# and released under the MIT License.
5
5
# For more details, visit the project page:
6
6
# https://github.com/github/gitignore
27
27
npm-debug.log *
28
28
yarn-debug.log *
29
29
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
30
34
31
35
# Runtime data
32
36
pids
@@ -39,6 +43,7 @@ lib-cov
39
43
40
44
# Coverage directory used by tools like istanbul
41
45
coverage
46
+ * .lcov
42
47
43
48
# nyc test coverage
44
49
.nyc_output
@@ -59,15 +64,24 @@ build/Release
59
64
node_modules /
60
65
jspm_packages /
61
66
62
- # TypeScript v1 declaration files
63
- typings /
67
+ # Snowpack dependency directory (https://snowpack.dev/)
68
+ web_modules /
69
+
70
+ # TypeScript cache
71
+ * .tsbuildinfo
64
72
65
73
# Optional npm cache directory
66
74
.npm
67
75
68
76
# Optional eslint cache
69
77
.eslintcache
70
78
79
+ # Microbundle cache
80
+ .rpt2_cache /
81
+ .rts2_cache_cjs /
82
+ .rts2_cache_es /
83
+ .rts2_cache_umd /
84
+
71
85
# Optional REPL history
72
86
.node_repl_history
73
87
@@ -79,18 +93,47 @@ typings/
79
93
80
94
# dotenv environment variables file
81
95
.env
96
+ .env.test
82
97
83
98
# parcel-bundler cache (https://parceljs.org/)
84
99
.cache
100
+ .parcel-cache
85
101
86
- # next .js build output
102
+ # Next .js build output
87
103
.next
104
+ out
88
105
89
- # nuxt .js build output
106
+ # Nuxt .js build / generate output
90
107
.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
91
115
92
116
# vuepress build output
93
117
.vuepress /dist
94
118
95
119
# 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