goodcheck 2.4.3 → 2.4.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: bc42687754f4ad7fe5e48927a75c1a002eef6be5296c9192906e2ae1cfa3ec4e
4
- data.tar.gz: d98d68e23feb34946bb21c17c9568b267842ed24eba012472a9c9b29f5787b7e
3
+ metadata.gz: 2d2b83dcf223a54127f51e3f463c78a54ef510fa059e4d6ccf506fff94370d97
4
+ data.tar.gz: 18899f7fa4d04b5b163fec52cd731e0c806c99f685f595370bd425a973848bb4
5
5
  SHA512:
6
- metadata.gz: 5ad795cf04626769374ca254f9a86feb63698540c32d4af8efb9e705f74c55a0cf3d3705f99e2a285dbdc156fcb8bae22a74ea4e9aefa5efb24b2368f180197d
7
- data.tar.gz: cfae9d9cd9d5b76bfa03840d66ec2ea3671a77ef5fb98a1e24994c303b57254d22ba80ac0cc91521c51e82d1594e9e12a4ce5d4eb4a3ad4c701634d1e60c253f
6
+ metadata.gz: ad8c59656bdf1f55c2d0b3aeaf5156a837c790381564c73564689231023a577fe6988ddbc0ae503e7b1be8dce5d95603128337498806ff765d6e2bfa7f899f37
7
+ data.tar.gz: '0683f2d36ab5f4eef7328512b488a95383f3ac0d73549cf1f7f724bf84cc70b041882ee3875137b3328aab1aa4ae45066b45d8a82ac21a9b195aebade2736a2d'
data/.gitignore CHANGED
@@ -9,4 +9,5 @@
9
9
  /tmp/
10
10
  /.idea
11
11
  /Gemfile.lock
12
+ /.ruby-version
12
13
  .DS_Store
@@ -1,8 +1,8 @@
1
1
  language: ruby
2
2
  rvm:
3
- - 2.4.7
4
- - 2.5.6
5
- - 2.6.4
3
+ - 2.4.9
4
+ - 2.5.7
5
+ - 2.6.5
6
6
  script:
7
7
  - bundle exec rake
8
8
  - bundle exec rake docs:build
@@ -2,6 +2,11 @@
2
2
 
3
3
  ## master
4
4
 
5
+ ## 2.4.4 (2019-11-19)
6
+
7
+ * Check dot files (except for `.git`, `.svn`, `.hg`) [#91](https://github.com/sider/goodcheck/pull/91)
8
+ * Improve `test` command output [#93](https://github.com/sider/goodcheck/pull/93)
9
+
5
10
  ## 2.4.3 (2019-11-07)
6
11
 
7
12
  * Change LICENSE to MIT [#76](https://github.com/sider/goodcheck/pull/76)
data/README.md CHANGED
@@ -419,8 +419,10 @@ To release a new version, follows the steps below:
419
419
 
420
420
  1. Update the version number in [`version.rb`](lib/goodcheck/version.rb).
421
421
  2. Add the new version's entry to the [changelog](CHANGELOG.md).
422
- 3. Commit the above changes like `git commit -m 'Version 1.2.3'`.
423
- 4. Run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
422
+ 3. Update the documentation via `bundle exec rake docs:update_version`.
423
+ 4. Commit the above changes like `git commit -m 'Version 1.2.3'`.
424
+ 5. Run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
425
+ 6. Publish the updated documentation like `GIT_USER=some_user USE_SSH=true bundle exec rake docs:publish`.
424
426
 
425
427
  ## Contributing
426
428
 
data/Rakefile CHANGED
@@ -19,14 +19,28 @@ namespace :docs do
19
19
  desc "Install dependencies for the documentation website"
20
20
  task :install_deps do
21
21
  on_docs_dir do
22
- sh "yarn install"
22
+ sh "yarn", "install"
23
23
  end
24
24
  end
25
25
 
26
26
  desc "Build the documentation website"
27
27
  task :build => [:install_deps] do
28
28
  on_docs_dir do
29
- sh "yarn run build"
29
+ sh "yarn", "run", "build"
30
+ end
31
+ end
32
+
33
+ desc "Update the version of the documentation website"
34
+ task :update_version => [:install_deps] do
35
+ on_docs_dir do
36
+ sh "yarn", "run", "version", Goodcheck::VERSION
37
+ end
38
+ end
39
+
40
+ desc "Publish the documentation website"
41
+ task :publish => [:build] do
42
+ on_docs_dir do
43
+ sh "yarn", "run", "publish-gh-pages"
30
44
  end
31
45
  end
32
46
 
@@ -9,6 +9,6 @@
9
9
  "rename-version": "docusaurus-rename-version"
10
10
  },
11
11
  "devDependencies": {
12
- "docusaurus": "^1.12.0"
12
+ "docusaurus": "^1.14.0"
13
13
  }
14
14
  }
@@ -0,0 +1,80 @@
1
+ ---
2
+ id: version-2.4.3-rules
3
+ title: Rules
4
+ sidebar_label: Rules
5
+ original_id: rules
6
+ ---
7
+
8
+
9
+ ## Rule: `"_blank"` Security Issue
10
+
11
+ When `target = "_blank"` is used, the opened page can access the original window object and potentially redirect the original page to a malicious URL. In this example, the rule will look for patterns of `"_blank"` and suggest to use `rel="noopener"` to prevent the opened page from having access.
12
+
13
+ ```yaml
14
+ rules:
15
+ - id: security.link
16
+ pattern:
17
+ - token: 'target="_blank"'
18
+ - token: 'target: "_blank"'
19
+ message: |
20
+ Specify rel="noopener" for security reasons.
21
+
22
+ Opening new tab without rel="noopener" may cause a security issue.
23
+ It allows modifying original tab URLs from opened tabs.
24
+ justification:
25
+ - When opening a URL in our service
26
+ glob:
27
+ - "**/*.html"
28
+ - "**/*.html.erb"
29
+ fail:
30
+ - '<a href="https://github.com" target="_blank">GitHub</a>'
31
+ pass:
32
+ - '<a href="/signup">Signup</a>'
33
+ ```
34
+
35
+ ## Rule: Sign in
36
+ > Warning: This rule needs customization.
37
+
38
+ Keep wording consistent to provide a clear experience for users. In this example, the use of Log in or Log out would prompt the use of sign in / sign out instead.
39
+
40
+ ```yaml
41
+ rules:
42
+ - id: wording.signin
43
+ pattern:
44
+ - token: Log in
45
+ case_sensitive: false
46
+ - token: Log out
47
+ case_sensitive: false
48
+ glob:
49
+ - "**/*.html.erb"
50
+ - "**/*.yml"
51
+ message: |
52
+ Please use “sign in”/“sign out”
53
+
54
+ We use “sign in” instead of “log in” and “sign out” instead of “log out”.
55
+ See the wording policy for details.
56
+
57
+ https://docs.example.com/1840
58
+ fail:
59
+ - "Log in"
60
+ - "Log out"
61
+ pass:
62
+ - "Sign in"
63
+ - "Sign out"
64
+ ```
65
+
66
+ ## Rule: mixin
67
+ > Warning: This rule needs customization.
68
+
69
+ A mixin lets you make groups of CSS declarations that you want to reuse throughout your site. In this example, it creates a warning when the color pattern is used and suggests using a mixin instead.
70
+
71
+ ```yaml
72
+ rules:
73
+ - id: use-mixin
74
+ message: Use mixin.
75
+ pattern: "color: #038cf4;"
76
+ pass:
77
+ - "@include some-mixin;"
78
+ fail:
79
+ - "color: #038cf4;"
80
+ ```
@@ -1,4 +1,6 @@
1
1
  [
2
+ "2.4.4",
3
+ "2.4.3",
2
4
  "2.4.0",
3
5
  "1.0.2",
4
6
  "1.0.1",
@@ -9,19 +9,19 @@
9
9
  dependencies:
10
10
  "@babel/highlight" "^7.0.0"
11
11
 
12
- "@babel/core@^7.5.5":
13
- version "7.6.0"
14
- resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.6.0.tgz#9b00f73554edd67bebc86df8303ef678be3d7b48"
15
- integrity sha512-FuRhDRtsd6IptKpHXAa+4WPZYY2ZzgowkbLBecEDDSje1X/apG7jQM33or3NdOmjXBKWGOg4JmSiRfUfuTtHXw==
12
+ "@babel/core@^7.6.2":
13
+ version "7.7.2"
14
+ resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.7.2.tgz#ea5b99693bcfc058116f42fa1dd54da412b29d91"
15
+ integrity sha512-eeD7VEZKfhK1KUXGiyPFettgF3m513f8FoBSWiQ1xTvl1RAopLs42Wp9+Ze911I6H0N9lNqJMDgoZT7gHsipeQ==
16
16
  dependencies:
17
17
  "@babel/code-frame" "^7.5.5"
18
- "@babel/generator" "^7.6.0"
19
- "@babel/helpers" "^7.6.0"
20
- "@babel/parser" "^7.6.0"
21
- "@babel/template" "^7.6.0"
22
- "@babel/traverse" "^7.6.0"
23
- "@babel/types" "^7.6.0"
24
- convert-source-map "^1.1.0"
18
+ "@babel/generator" "^7.7.2"
19
+ "@babel/helpers" "^7.7.0"
20
+ "@babel/parser" "^7.7.2"
21
+ "@babel/template" "^7.7.0"
22
+ "@babel/traverse" "^7.7.2"
23
+ "@babel/types" "^7.7.2"
24
+ convert-source-map "^1.7.0"
25
25
  debug "^4.1.0"
26
26
  json5 "^2.1.0"
27
27
  lodash "^4.17.13"
@@ -29,16 +29,15 @@
29
29
  semver "^5.4.1"
30
30
  source-map "^0.5.0"
31
31
 
32
- "@babel/generator@^7.6.0":
33
- version "7.6.0"
34
- resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.6.0.tgz#e2c21efbfd3293ad819a2359b448f002bfdfda56"
35
- integrity sha512-Ms8Mo7YBdMMn1BYuNtKuP/z0TgEIhbcyB8HVR6PPNYp4P61lMsABiS4A3VG1qznjXVCf3r+fVHhm4efTYVsySA==
32
+ "@babel/generator@^7.7.2":
33
+ version "7.7.2"
34
+ resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.7.2.tgz#2f4852d04131a5e17ea4f6645488b5da66ebf3af"
35
+ integrity sha512-WthSArvAjYLz4TcbKOi88me+KmDJdKSlfwwN8CnUYn9jBkzhq0ZEPuBfkAWIvjJ3AdEV1Cf/+eSQTnp3IDJKlQ==
36
36
  dependencies:
37
- "@babel/types" "^7.6.0"
37
+ "@babel/types" "^7.7.2"
38
38
  jsesc "^2.5.1"
39
39
  lodash "^4.17.13"
40
40
  source-map "^0.5.0"
41
- trim-right "^1.0.1"
42
41
 
43
42
  "@babel/helper-annotate-as-pure@^7.0.0":
44
43
  version "7.0.0"
@@ -47,6 +46,13 @@
47
46
  dependencies:
48
47
  "@babel/types" "^7.0.0"
49
48
 
49
+ "@babel/helper-annotate-as-pure@^7.7.0":
50
+ version "7.7.0"
51
+ resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.7.0.tgz#efc54032d43891fe267679e63f6860aa7dbf4a5e"
52
+ integrity sha512-k50CQxMlYTYo+GGyUGFwpxKVtxVJi9yh61sXZji3zYHccK9RYliZGSTOgci85T+r+0VFN2nWbGM04PIqwfrpMg==
53
+ dependencies:
54
+ "@babel/types" "^7.7.0"
55
+
50
56
  "@babel/helper-builder-binary-assignment-operator-visitor@^7.1.0":
51
57
  version "7.1.0"
52
58
  resolved "https://registry.yarnpkg.com/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.1.0.tgz#6b69628dfe4087798e0c4ed98e3d4a6b2fbd2f5f"
@@ -84,13 +90,21 @@
84
90
  "@babel/helper-replace-supers" "^7.5.5"
85
91
  "@babel/helper-split-export-declaration" "^7.4.4"
86
92
 
87
- "@babel/helper-define-map@^7.5.5":
88
- version "7.5.5"
89
- resolved "https://registry.yarnpkg.com/@babel/helper-define-map/-/helper-define-map-7.5.5.tgz#3dec32c2046f37e09b28c93eb0b103fd2a25d369"
90
- integrity sha512-fTfxx7i0B5NJqvUOBBGREnrqbTxRh7zinBANpZXAVDlsZxYdclDp467G1sQ8VZYMnAURY3RpBUAgOYT9GfzHBg==
93
+ "@babel/helper-create-regexp-features-plugin@^7.7.0":
94
+ version "7.7.2"
95
+ resolved "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.7.2.tgz#6f20443778c8fce2af2ff4206284afc0ced65db6"
96
+ integrity sha512-pAil/ZixjTlrzNpjx+l/C/wJk002Wo7XbbZ8oujH/AoJ3Juv0iN/UTcPUHXKMFLqsfS0Hy6Aow8M31brUYBlQQ==
91
97
  dependencies:
92
- "@babel/helper-function-name" "^7.1.0"
93
- "@babel/types" "^7.5.5"
98
+ "@babel/helper-regex" "^7.4.4"
99
+ regexpu-core "^4.6.0"
100
+
101
+ "@babel/helper-define-map@^7.7.0":
102
+ version "7.7.0"
103
+ resolved "https://registry.yarnpkg.com/@babel/helper-define-map/-/helper-define-map-7.7.0.tgz#60b0e9fd60def9de5054c38afde8c8ee409c7529"
104
+ integrity sha512-kPKWPb0dMpZi+ov1hJiwse9dWweZsz3V9rP4KdytnX1E7z3cTNmFGglwklzFPuqIcHLIY3bgKSs4vkwXXdflQA==
105
+ dependencies:
106
+ "@babel/helper-function-name" "^7.7.0"
107
+ "@babel/types" "^7.7.0"
94
108
  lodash "^4.17.13"
95
109
 
96
110
  "@babel/helper-explode-assignable-expression@^7.1.0":
@@ -110,6 +124,15 @@
110
124
  "@babel/template" "^7.1.0"
111
125
  "@babel/types" "^7.0.0"
112
126
 
127
+ "@babel/helper-function-name@^7.7.0":
128
+ version "7.7.0"
129
+ resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.7.0.tgz#44a5ad151cfff8ed2599c91682dda2ec2c8430a3"
130
+ integrity sha512-tDsJgMUAP00Ugv8O2aGEua5I2apkaQO7lBGUq1ocwN3G23JE5Dcq0uh3GvFTChPa4b40AWiAsLvCZOA2rdnQ7Q==
131
+ dependencies:
132
+ "@babel/helper-get-function-arity" "^7.7.0"
133
+ "@babel/template" "^7.7.0"
134
+ "@babel/types" "^7.7.0"
135
+
113
136
  "@babel/helper-get-function-arity@^7.0.0":
114
137
  version "7.0.0"
115
138
  resolved "https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.0.0.tgz#83572d4320e2a4657263734113c42868b64e49c3"
@@ -117,6 +140,13 @@
117
140
  dependencies:
118
141
  "@babel/types" "^7.0.0"
119
142
 
143
+ "@babel/helper-get-function-arity@^7.7.0":
144
+ version "7.7.0"
145
+ resolved "https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.7.0.tgz#c604886bc97287a1d1398092bc666bc3d7d7aa2d"
146
+ integrity sha512-tLdojOTz4vWcEnHWHCuPN5P85JLZWbm5Fx5ZsMEMPhF3Uoe3O7awrbM2nQ04bDOUToH/2tH/ezKEOR8zEYzqyw==
147
+ dependencies:
148
+ "@babel/types" "^7.7.0"
149
+
120
150
  "@babel/helper-hoist-variables@^7.4.4":
121
151
  version "7.4.4"
122
152
  resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.4.4.tgz#0298b5f25c8c09c53102d52ac4a98f773eb2850a"
@@ -124,6 +154,13 @@
124
154
  dependencies:
125
155
  "@babel/types" "^7.4.4"
126
156
 
157
+ "@babel/helper-hoist-variables@^7.7.0":
158
+ version "7.7.0"
159
+ resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.7.0.tgz#b4552e4cfe5577d7de7b183e193e84e4ec538c81"
160
+ integrity sha512-LUe/92NqsDAkJjjCEWkNe+/PcpnisvnqdlRe19FahVapa4jndeuJ+FBiTX1rcAKWKcJGE+C3Q3tuEuxkSmCEiQ==
161
+ dependencies:
162
+ "@babel/types" "^7.7.0"
163
+
127
164
  "@babel/helper-member-expression-to-functions@^7.5.5":
128
165
  version "7.5.5"
129
166
  resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.5.5.tgz#1fb5b8ec4453a93c439ee9fe3aeea4a84b76b590"
@@ -131,6 +168,13 @@
131
168
  dependencies:
132
169
  "@babel/types" "^7.5.5"
133
170
 
171
+ "@babel/helper-member-expression-to-functions@^7.7.0":
172
+ version "7.7.0"
173
+ resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.7.0.tgz#472b93003a57071f95a541ea6c2b098398bcad8a"
174
+ integrity sha512-QaCZLO2RtBcmvO/ekOLp8p7R5X2JriKRizeDpm5ChATAFWrrYDcDxPuCIBXKyBjY+i1vYSdcUTMIb8psfxHDPA==
175
+ dependencies:
176
+ "@babel/types" "^7.7.0"
177
+
134
178
  "@babel/helper-module-imports@^7.0.0":
135
179
  version "7.0.0"
136
180
  resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.0.0.tgz#96081b7111e486da4d2cd971ad1a4fe216cc2e3d"
@@ -138,7 +182,14 @@
138
182
  dependencies:
139
183
  "@babel/types" "^7.0.0"
140
184
 
141
- "@babel/helper-module-transforms@^7.1.0", "@babel/helper-module-transforms@^7.4.4":
185
+ "@babel/helper-module-imports@^7.7.0":
186
+ version "7.7.0"
187
+ resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.7.0.tgz#99c095889466e5f7b6d66d98dffc58baaf42654d"
188
+ integrity sha512-Dv3hLKIC1jyfTkClvyEkYP2OlkzNvWs5+Q8WgPbxM5LMeorons7iPP91JM+DU7tRbhqA1ZeooPaMFvQrn23RHw==
189
+ dependencies:
190
+ "@babel/types" "^7.7.0"
191
+
192
+ "@babel/helper-module-transforms@^7.1.0":
142
193
  version "7.5.5"
143
194
  resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.5.5.tgz#f84ff8a09038dcbca1fd4355661a500937165b4a"
144
195
  integrity sha512-jBeCvETKuJqeiaCdyaheF40aXnnU1+wkSiUs/IQg3tB85up1LyL8x77ClY8qJpuRJUcXQo+ZtdNESmZl4j56Pw==
@@ -150,6 +201,18 @@
150
201
  "@babel/types" "^7.5.5"
151
202
  lodash "^4.17.13"
152
203
 
204
+ "@babel/helper-module-transforms@^7.7.0":
205
+ version "7.7.0"
206
+ resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.7.0.tgz#154a69f0c5b8fd4d39e49750ff7ac4faa3f36786"
207
+ integrity sha512-rXEefBuheUYQyX4WjV19tuknrJFwyKw0HgzRwbkyTbB+Dshlq7eqkWbyjzToLrMZk/5wKVKdWFluiAsVkHXvuQ==
208
+ dependencies:
209
+ "@babel/helper-module-imports" "^7.7.0"
210
+ "@babel/helper-simple-access" "^7.7.0"
211
+ "@babel/helper-split-export-declaration" "^7.7.0"
212
+ "@babel/template" "^7.7.0"
213
+ "@babel/types" "^7.7.0"
214
+ lodash "^4.17.13"
215
+
153
216
  "@babel/helper-optimise-call-expression@^7.0.0":
154
217
  version "7.0.0"
155
218
  resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.0.0.tgz#a2920c5702b073c15de51106200aa8cad20497d5"
@@ -157,6 +220,13 @@
157
220
  dependencies:
158
221
  "@babel/types" "^7.0.0"
159
222
 
223
+ "@babel/helper-optimise-call-expression@^7.7.0":
224
+ version "7.7.0"
225
+ resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.7.0.tgz#4f66a216116a66164135dc618c5d8b7a959f9365"
226
+ integrity sha512-48TeqmbazjNU/65niiiJIJRc5JozB8acui1OS7bSd6PgxfuovWsvjfWSzlgx+gPFdVveNzUdpdIg5l56Pl5jqg==
227
+ dependencies:
228
+ "@babel/types" "^7.7.0"
229
+
160
230
  "@babel/helper-plugin-utils@^7.0.0":
161
231
  version "7.0.0"
162
232
  resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.0.0.tgz#bbb3fbee98661c569034237cc03967ba99b4f250"
@@ -169,16 +239,16 @@
169
239
  dependencies:
170
240
  lodash "^4.17.13"
171
241
 
172
- "@babel/helper-remap-async-to-generator@^7.1.0":
173
- version "7.1.0"
174
- resolved "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.1.0.tgz#361d80821b6f38da75bd3f0785ece20a88c5fe7f"
175
- integrity sha512-3fOK0L+Fdlg8S5al8u/hWE6vhufGSn0bN09xm2LXMy//REAF8kDCrYoOBKYmA8m5Nom+sV9LyLCwrFynA8/slg==
242
+ "@babel/helper-remap-async-to-generator@^7.7.0":
243
+ version "7.7.0"
244
+ resolved "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.7.0.tgz#4d69ec653e8bff5bce62f5d33fc1508f223c75a7"
245
+ integrity sha512-pHx7RN8X0UNHPB/fnuDnRXVZ316ZigkO8y8D835JlZ2SSdFKb6yH9MIYRU4fy/KPe5sPHDFOPvf8QLdbAGGiyw==
176
246
  dependencies:
177
- "@babel/helper-annotate-as-pure" "^7.0.0"
178
- "@babel/helper-wrap-function" "^7.1.0"
179
- "@babel/template" "^7.1.0"
180
- "@babel/traverse" "^7.1.0"
181
- "@babel/types" "^7.0.0"
247
+ "@babel/helper-annotate-as-pure" "^7.7.0"
248
+ "@babel/helper-wrap-function" "^7.7.0"
249
+ "@babel/template" "^7.7.0"
250
+ "@babel/traverse" "^7.7.0"
251
+ "@babel/types" "^7.7.0"
182
252
 
183
253
  "@babel/helper-replace-supers@^7.5.5":
184
254
  version "7.5.5"
@@ -190,6 +260,16 @@
190
260
  "@babel/traverse" "^7.5.5"
191
261
  "@babel/types" "^7.5.5"
192
262
 
263
+ "@babel/helper-replace-supers@^7.7.0":
264
+ version "7.7.0"
265
+ resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.7.0.tgz#d5365c8667fe7cbd13b8ddddceb9bd7f2b387512"
266
+ integrity sha512-5ALYEul5V8xNdxEeWvRsBzLMxQksT7MaStpxjJf9KsnLxpAKBtfw5NeMKZJSYDa0lKdOcy0g+JT/f5mPSulUgg==
267
+ dependencies:
268
+ "@babel/helper-member-expression-to-functions" "^7.7.0"
269
+ "@babel/helper-optimise-call-expression" "^7.7.0"
270
+ "@babel/traverse" "^7.7.0"
271
+ "@babel/types" "^7.7.0"
272
+
193
273
  "@babel/helper-simple-access@^7.1.0":
194
274
  version "7.1.0"
195
275
  resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.1.0.tgz#65eeb954c8c245beaa4e859da6188f39d71e585c"
@@ -198,6 +278,14 @@
198
278
  "@babel/template" "^7.1.0"
199
279
  "@babel/types" "^7.0.0"
200
280
 
281
+ "@babel/helper-simple-access@^7.7.0":
282
+ version "7.7.0"
283
+ resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.7.0.tgz#97a8b6c52105d76031b86237dc1852b44837243d"
284
+ integrity sha512-AJ7IZD7Eem3zZRuj5JtzFAptBw7pMlS3y8Qv09vaBWoFsle0d1kAn5Wq6Q9MyBXITPOKnxwkZKoAm4bopmv26g==
285
+ dependencies:
286
+ "@babel/template" "^7.7.0"
287
+ "@babel/types" "^7.7.0"
288
+
201
289
  "@babel/helper-split-export-declaration@^7.4.4":
202
290
  version "7.4.4"
203
291
  resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.4.4.tgz#ff94894a340be78f53f06af038b205c49d993677"
@@ -205,24 +293,31 @@
205
293
  dependencies:
206
294
  "@babel/types" "^7.4.4"
207
295
 
208
- "@babel/helper-wrap-function@^7.1.0":
209
- version "7.2.0"
210
- resolved "https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.2.0.tgz#c4e0012445769e2815b55296ead43a958549f6fa"
211
- integrity sha512-o9fP1BZLLSrYlxYEYyl2aS+Flun5gtjTIG8iln+XuEzQTs0PLagAGSXUcqruJwD5fM48jzIEggCKpIfWTcR7pQ==
296
+ "@babel/helper-split-export-declaration@^7.7.0":
297
+ version "7.7.0"
298
+ resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.7.0.tgz#1365e74ea6c614deeb56ebffabd71006a0eb2300"
299
+ integrity sha512-HgYSI8rH08neWlAH3CcdkFg9qX9YsZysZI5GD8LjhQib/mM0jGOZOVkoUiiV2Hu978fRtjtsGsW6w0pKHUWtqA==
212
300
  dependencies:
213
- "@babel/helper-function-name" "^7.1.0"
214
- "@babel/template" "^7.1.0"
215
- "@babel/traverse" "^7.1.0"
216
- "@babel/types" "^7.2.0"
301
+ "@babel/types" "^7.7.0"
217
302
 
218
- "@babel/helpers@^7.6.0":
219
- version "7.6.0"
220
- resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.6.0.tgz#21961d16c6a3c3ab597325c34c465c0887d31c6e"
221
- integrity sha512-W9kao7OBleOjfXtFGgArGRX6eCP0UEcA2ZWEWNkJdRZnHhW4eEbeswbG3EwaRsnQUAEGWYgMq1HsIXuNNNy2eQ==
303
+ "@babel/helper-wrap-function@^7.7.0":
304
+ version "7.7.0"
305
+ resolved "https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.7.0.tgz#15af3d3e98f8417a60554acbb6c14e75e0b33b74"
306
+ integrity sha512-sd4QjeMgQqzshSjecZjOp8uKfUtnpmCyQhKQrVJBBgeHAB/0FPi33h3AbVlVp07qQtMD4QgYSzaMI7VwncNK/w==
222
307
  dependencies:
223
- "@babel/template" "^7.6.0"
224
- "@babel/traverse" "^7.6.0"
225
- "@babel/types" "^7.6.0"
308
+ "@babel/helper-function-name" "^7.7.0"
309
+ "@babel/template" "^7.7.0"
310
+ "@babel/traverse" "^7.7.0"
311
+ "@babel/types" "^7.7.0"
312
+
313
+ "@babel/helpers@^7.7.0":
314
+ version "7.7.0"
315
+ resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.7.0.tgz#359bb5ac3b4726f7c1fde0ec75f64b3f4275d60b"
316
+ integrity sha512-VnNwL4YOhbejHb7x/b5F39Zdg5vIQpUUNzJwx0ww1EcVRt41bbGRZWhAURrfY32T5zTT3qwNOQFWpn+P0i0a2g==
317
+ dependencies:
318
+ "@babel/template" "^7.7.0"
319
+ "@babel/traverse" "^7.7.0"
320
+ "@babel/types" "^7.7.0"
226
321
 
227
322
  "@babel/highlight@^7.0.0":
228
323
  version "7.5.0"
@@ -238,13 +333,18 @@
238
333
  resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.6.0.tgz#3e05d0647432a8326cb28d0de03895ae5a57f39b"
239
334
  integrity sha512-+o2q111WEx4srBs7L9eJmcwi655eD8sXniLqMB93TBK9GrNzGrxDWSjiqz2hLU0Ha8MTXFIP0yd9fNdP+m43ZQ==
240
335
 
241
- "@babel/plugin-proposal-async-generator-functions@^7.2.0":
242
- version "7.2.0"
243
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.2.0.tgz#b289b306669dce4ad20b0252889a15768c9d417e"
244
- integrity sha512-+Dfo/SCQqrwx48ptLVGLdE39YtWRuKc/Y9I5Fy0P1DDBB9lsAHpjcEJQt+4IifuSOSTLBKJObJqMvaO1pIE8LQ==
336
+ "@babel/parser@^7.7.0", "@babel/parser@^7.7.2":
337
+ version "7.7.2"
338
+ resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.7.2.tgz#ea8334dc77416bfd9473eb470fd00d8245b3943b"
339
+ integrity sha512-DDaR5e0g4ZTb9aP7cpSZLkACEBdoLGwJDWgHtBhrGX7Q1RjhdoMOfexICj5cqTAtpowjGQWfcvfnQG7G2kAB5w==
340
+
341
+ "@babel/plugin-proposal-async-generator-functions@^7.7.0":
342
+ version "7.7.0"
343
+ resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.7.0.tgz#83ef2d6044496b4c15d8b4904e2219e6dccc6971"
344
+ integrity sha512-ot/EZVvf3mXtZq0Pd0+tSOfGWMizqmOohXmNZg6LNFjHOV+wOPv7BvVYh8oPR8LhpIP3ye8nNooKL50YRWxpYA==
245
345
  dependencies:
246
346
  "@babel/helper-plugin-utils" "^7.0.0"
247
- "@babel/helper-remap-async-to-generator" "^7.1.0"
347
+ "@babel/helper-remap-async-to-generator" "^7.7.0"
248
348
  "@babel/plugin-syntax-async-generators" "^7.2.0"
249
349
 
250
350
  "@babel/plugin-proposal-class-properties@^7.5.5":
@@ -255,10 +355,10 @@
255
355
  "@babel/helper-create-class-features-plugin" "^7.5.5"
256
356
  "@babel/helper-plugin-utils" "^7.0.0"
257
357
 
258
- "@babel/plugin-proposal-dynamic-import@^7.5.0":
259
- version "7.5.0"
260
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.5.0.tgz#e532202db4838723691b10a67b8ce509e397c506"
261
- integrity sha512-x/iMjggsKTFHYC6g11PL7Qy58IK8H5zqfm9e6hu4z1iH2IRyAp9u9dL80zA6R76yFovETFLKz2VJIC2iIPBuFw==
358
+ "@babel/plugin-proposal-dynamic-import@^7.7.0":
359
+ version "7.7.0"
360
+ resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.7.0.tgz#dc02a8bad8d653fb59daf085516fa416edd2aa7f"
361
+ integrity sha512-7poL3Xi+QFPC7sGAzEIbXUyYzGJwbc2+gSD0AkiC5k52kH2cqHdqxm5hNFfLW3cRSTcx9bN0Fl7/6zWcLLnKAQ==
262
362
  dependencies:
263
363
  "@babel/helper-plugin-utils" "^7.0.0"
264
364
  "@babel/plugin-syntax-dynamic-import" "^7.2.0"
@@ -271,10 +371,10 @@
271
371
  "@babel/helper-plugin-utils" "^7.0.0"
272
372
  "@babel/plugin-syntax-json-strings" "^7.2.0"
273
373
 
274
- "@babel/plugin-proposal-object-rest-spread@^7.5.5":
275
- version "7.5.5"
276
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.5.5.tgz#61939744f71ba76a3ae46b5eea18a54c16d22e58"
277
- integrity sha512-F2DxJJSQ7f64FyTVl5cw/9MWn6naXGdk3Q3UhDbFEEHv+EilCPoeRD3Zh/Utx1CJz4uyKlQ4uH+bJPbEhMV7Zw==
374
+ "@babel/plugin-proposal-object-rest-spread@^7.6.2":
375
+ version "7.6.2"
376
+ resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.6.2.tgz#8ffccc8f3a6545e9f78988b6bf4fe881b88e8096"
377
+ integrity sha512-LDBXlmADCsMZV1Y9OQwMc0MyGZ8Ta/zlD9N67BfQT8uYwkRswiu2hU6nJKrjrt/58aH/vqfQlR/9yId/7A2gWw==
278
378
  dependencies:
279
379
  "@babel/helper-plugin-utils" "^7.0.0"
280
380
  "@babel/plugin-syntax-object-rest-spread" "^7.2.0"
@@ -287,14 +387,13 @@
287
387
  "@babel/helper-plugin-utils" "^7.0.0"
288
388
  "@babel/plugin-syntax-optional-catch-binding" "^7.2.0"
289
389
 
290
- "@babel/plugin-proposal-unicode-property-regex@^7.4.4":
291
- version "7.4.4"
292
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.4.4.tgz#501ffd9826c0b91da22690720722ac7cb1ca9c78"
293
- integrity sha512-j1NwnOqMG9mFUOH58JTFsA/+ZYzQLUZ/drqWUqxCYLGeu2JFZL8YrNC9hBxKmWtAuOCHPcRpgv7fhap09Fb4kA==
390
+ "@babel/plugin-proposal-unicode-property-regex@^7.7.0":
391
+ version "7.7.0"
392
+ resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.7.0.tgz#549fe1717a1bd0a2a7e63163841cb37e78179d5d"
393
+ integrity sha512-mk34H+hp7kRBWJOOAR0ZMGCydgKMD4iN9TpDRp3IIcbunltxEY89XSimc6WbtSLCDrwcdy/EEw7h5CFCzxTchw==
294
394
  dependencies:
395
+ "@babel/helper-create-regexp-features-plugin" "^7.7.0"
295
396
  "@babel/helper-plugin-utils" "^7.0.0"
296
- "@babel/helper-regex" "^7.4.4"
297
- regexpu-core "^4.5.4"
298
397
 
299
398
  "@babel/plugin-syntax-async-generators@^7.2.0":
300
399
  version "7.2.0"
@@ -338,6 +437,13 @@
338
437
  dependencies:
339
438
  "@babel/helper-plugin-utils" "^7.0.0"
340
439
 
440
+ "@babel/plugin-syntax-top-level-await@^7.7.0":
441
+ version "7.7.0"
442
+ resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.7.0.tgz#f5699549f50bbe8d12b1843a4e82f0a37bb65f4d"
443
+ integrity sha512-hi8FUNiFIY1fnUI2n1ViB1DR0R4QeK4iHcTlW6aJkrPoTdb8Rf1EMQ6GT3f67DDkYyWgew9DFoOZ6gOoEsdzTA==
444
+ dependencies:
445
+ "@babel/helper-plugin-utils" "^7.0.0"
446
+
341
447
  "@babel/plugin-transform-arrow-functions@^7.2.0":
342
448
  version "7.2.0"
343
449
  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.2.0.tgz#9aeafbe4d6ffc6563bf8f8372091628f00779550"
@@ -345,14 +451,14 @@
345
451
  dependencies:
346
452
  "@babel/helper-plugin-utils" "^7.0.0"
347
453
 
348
- "@babel/plugin-transform-async-to-generator@^7.5.0":
349
- version "7.5.0"
350
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.5.0.tgz#89a3848a0166623b5bc481164b5936ab947e887e"
351
- integrity sha512-mqvkzwIGkq0bEF1zLRRiTdjfomZJDV33AH3oQzHVGkI2VzEmXLpKKOBvEVaFZBJdN0XTyH38s9j/Kiqr68dggg==
454
+ "@babel/plugin-transform-async-to-generator@^7.7.0":
455
+ version "7.7.0"
456
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.7.0.tgz#e2b84f11952cf5913fe3438b7d2585042772f492"
457
+ integrity sha512-vLI2EFLVvRBL3d8roAMqtVY0Bm9C1QzLkdS57hiKrjUBSqsQYrBsMCeOg/0KK7B0eK9V71J5mWcha9yyoI2tZw==
352
458
  dependencies:
353
- "@babel/helper-module-imports" "^7.0.0"
459
+ "@babel/helper-module-imports" "^7.7.0"
354
460
  "@babel/helper-plugin-utils" "^7.0.0"
355
- "@babel/helper-remap-async-to-generator" "^7.1.0"
461
+ "@babel/helper-remap-async-to-generator" "^7.7.0"
356
462
 
357
463
  "@babel/plugin-transform-block-scoped-functions@^7.2.0":
358
464
  version "7.2.0"
@@ -361,26 +467,26 @@
361
467
  dependencies:
362
468
  "@babel/helper-plugin-utils" "^7.0.0"
363
469
 
364
- "@babel/plugin-transform-block-scoping@^7.6.0":
365
- version "7.6.0"
366
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.6.0.tgz#c49e21228c4bbd4068a35667e6d951c75439b1dc"
367
- integrity sha512-tIt4E23+kw6TgL/edACZwP1OUKrjOTyMrFMLoT5IOFrfMRabCgekjqFd5o6PaAMildBu46oFkekIdMuGkkPEpA==
470
+ "@babel/plugin-transform-block-scoping@^7.6.3":
471
+ version "7.6.3"
472
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.6.3.tgz#6e854e51fbbaa84351b15d4ddafe342f3a5d542a"
473
+ integrity sha512-7hvrg75dubcO3ZI2rjYTzUrEuh1E9IyDEhhB6qfcooxhDA33xx2MasuLVgdxzcP6R/lipAC6n9ub9maNW6RKdw==
368
474
  dependencies:
369
475
  "@babel/helper-plugin-utils" "^7.0.0"
370
476
  lodash "^4.17.13"
371
477
 
372
- "@babel/plugin-transform-classes@^7.5.5":
373
- version "7.5.5"
374
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.5.5.tgz#d094299d9bd680a14a2a0edae38305ad60fb4de9"
375
- integrity sha512-U2htCNK/6e9K7jGyJ++1p5XRU+LJjrwtoiVn9SzRlDT2KubcZ11OOwy3s24TjHxPgxNwonCYP7U2K51uVYCMDg==
478
+ "@babel/plugin-transform-classes@^7.7.0":
479
+ version "7.7.0"
480
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.7.0.tgz#b411ecc1b8822d24b81e5d184f24149136eddd4a"
481
+ integrity sha512-/b3cKIZwGeUesZheU9jNYcwrEA7f/Bo4IdPmvp7oHgvks2majB5BoT5byAql44fiNQYOPzhk2w8DbgfuafkMoA==
376
482
  dependencies:
377
- "@babel/helper-annotate-as-pure" "^7.0.0"
378
- "@babel/helper-define-map" "^7.5.5"
379
- "@babel/helper-function-name" "^7.1.0"
380
- "@babel/helper-optimise-call-expression" "^7.0.0"
483
+ "@babel/helper-annotate-as-pure" "^7.7.0"
484
+ "@babel/helper-define-map" "^7.7.0"
485
+ "@babel/helper-function-name" "^7.7.0"
486
+ "@babel/helper-optimise-call-expression" "^7.7.0"
381
487
  "@babel/helper-plugin-utils" "^7.0.0"
382
- "@babel/helper-replace-supers" "^7.5.5"
383
- "@babel/helper-split-export-declaration" "^7.4.4"
488
+ "@babel/helper-replace-supers" "^7.7.0"
489
+ "@babel/helper-split-export-declaration" "^7.7.0"
384
490
  globals "^11.1.0"
385
491
 
386
492
  "@babel/plugin-transform-computed-properties@^7.2.0":
@@ -397,14 +503,13 @@
397
503
  dependencies:
398
504
  "@babel/helper-plugin-utils" "^7.0.0"
399
505
 
400
- "@babel/plugin-transform-dotall-regex@^7.4.4":
401
- version "7.4.4"
402
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.4.4.tgz#361a148bc951444312c69446d76ed1ea8e4450c3"
403
- integrity sha512-P05YEhRc2h53lZDjRPk/OektxCVevFzZs2Gfjd545Wde3k+yFDbXORgl2e0xpbq8mLcKJ7Idss4fAg0zORN/zg==
506
+ "@babel/plugin-transform-dotall-regex@^7.7.0":
507
+ version "7.7.0"
508
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.7.0.tgz#c5c9ecacab3a5e0c11db6981610f0c32fd698b3b"
509
+ integrity sha512-3QQlF7hSBnSuM1hQ0pS3pmAbWLax/uGNCbPBND9y+oJ4Y776jsyujG2k0Sn2Aj2a0QwVOiOFL5QVPA7spjvzSA==
404
510
  dependencies:
511
+ "@babel/helper-create-regexp-features-plugin" "^7.7.0"
405
512
  "@babel/helper-plugin-utils" "^7.0.0"
406
- "@babel/helper-regex" "^7.4.4"
407
- regexpu-core "^4.5.4"
408
513
 
409
514
  "@babel/plugin-transform-duplicate-keys@^7.5.0":
410
515
  version "7.5.0"
@@ -428,12 +533,12 @@
428
533
  dependencies:
429
534
  "@babel/helper-plugin-utils" "^7.0.0"
430
535
 
431
- "@babel/plugin-transform-function-name@^7.4.4":
432
- version "7.4.4"
433
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.4.4.tgz#e1436116abb0610c2259094848754ac5230922ad"
434
- integrity sha512-iU9pv7U+2jC9ANQkKeNF6DrPy4GBa4NWQtl6dHB4Pb3izX2JOEvDTFarlNsBj/63ZEzNNIAMs3Qw4fNCcSOXJA==
536
+ "@babel/plugin-transform-function-name@^7.7.0":
537
+ version "7.7.0"
538
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.7.0.tgz#0fa786f1eef52e3b7d4fc02e54b2129de8a04c2a"
539
+ integrity sha512-P5HKu0d9+CzZxP5jcrWdpe7ZlFDe24bmqP6a6X8BHEBl/eizAsY8K6LX8LASZL0Jxdjm5eEfzp+FIrxCm/p8bA==
435
540
  dependencies:
436
- "@babel/helper-function-name" "^7.1.0"
541
+ "@babel/helper-function-name" "^7.7.0"
437
542
  "@babel/helper-plugin-utils" "^7.0.0"
438
543
 
439
544
  "@babel/plugin-transform-literals@^7.2.0":
@@ -459,39 +564,39 @@
459
564
  "@babel/helper-plugin-utils" "^7.0.0"
460
565
  babel-plugin-dynamic-import-node "^2.3.0"
461
566
 
462
- "@babel/plugin-transform-modules-commonjs@^7.6.0":
463
- version "7.6.0"
464
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.6.0.tgz#39dfe957de4420445f1fcf88b68a2e4aa4515486"
465
- integrity sha512-Ma93Ix95PNSEngqomy5LSBMAQvYKVe3dy+JlVJSHEXZR5ASL9lQBedMiCyVtmTLraIDVRE3ZjTZvmXXD2Ozw3g==
567
+ "@babel/plugin-transform-modules-commonjs@^7.7.0":
568
+ version "7.7.0"
569
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.7.0.tgz#3e5ffb4fd8c947feede69cbe24c9554ab4113fe3"
570
+ integrity sha512-KEMyWNNWnjOom8vR/1+d+Ocz/mILZG/eyHHO06OuBQ2aNhxT62fr4y6fGOplRx+CxCSp3IFwesL8WdINfY/3kg==
466
571
  dependencies:
467
- "@babel/helper-module-transforms" "^7.4.4"
572
+ "@babel/helper-module-transforms" "^7.7.0"
468
573
  "@babel/helper-plugin-utils" "^7.0.0"
469
- "@babel/helper-simple-access" "^7.1.0"
574
+ "@babel/helper-simple-access" "^7.7.0"
470
575
  babel-plugin-dynamic-import-node "^2.3.0"
471
576
 
472
- "@babel/plugin-transform-modules-systemjs@^7.5.0":
473
- version "7.5.0"
474
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.5.0.tgz#e75266a13ef94202db2a0620977756f51d52d249"
475
- integrity sha512-Q2m56tyoQWmuNGxEtUyeEkm6qJYFqs4c+XyXH5RAuYxObRNz9Zgj/1g2GMnjYp2EUyEy7YTrxliGCXzecl/vJg==
577
+ "@babel/plugin-transform-modules-systemjs@^7.7.0":
578
+ version "7.7.0"
579
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.7.0.tgz#9baf471213af9761c1617bb12fd278e629041417"
580
+ integrity sha512-ZAuFgYjJzDNv77AjXRqzQGlQl4HdUM6j296ee4fwKVZfhDR9LAGxfvXjBkb06gNETPnN0sLqRm9Gxg4wZH6dXg==
476
581
  dependencies:
477
- "@babel/helper-hoist-variables" "^7.4.4"
582
+ "@babel/helper-hoist-variables" "^7.7.0"
478
583
  "@babel/helper-plugin-utils" "^7.0.0"
479
584
  babel-plugin-dynamic-import-node "^2.3.0"
480
585
 
481
- "@babel/plugin-transform-modules-umd@^7.2.0":
482
- version "7.2.0"
483
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.2.0.tgz#7678ce75169f0877b8eb2235538c074268dd01ae"
484
- integrity sha512-BV3bw6MyUH1iIsGhXlOK6sXhmSarZjtJ/vMiD9dNmpY8QXFFQTj+6v92pcfy1iqa8DeAfJFwoxcrS/TUZda6sw==
586
+ "@babel/plugin-transform-modules-umd@^7.7.0":
587
+ version "7.7.0"
588
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.7.0.tgz#d62c7da16670908e1d8c68ca0b5d4c0097b69966"
589
+ integrity sha512-u7eBA03zmUswQ9LQ7Qw0/ieC1pcAkbp5OQatbWUzY1PaBccvuJXUkYzoN1g7cqp7dbTu6Dp9bXyalBvD04AANA==
485
590
  dependencies:
486
- "@babel/helper-module-transforms" "^7.1.0"
591
+ "@babel/helper-module-transforms" "^7.7.0"
487
592
  "@babel/helper-plugin-utils" "^7.0.0"
488
593
 
489
- "@babel/plugin-transform-named-capturing-groups-regex@^7.6.0":
490
- version "7.6.0"
491
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.6.0.tgz#1e6e663097813bb4f53d42df0750cf28ad3bb3f1"
492
- integrity sha512-jem7uytlmrRl3iCAuQyw8BpB4c4LWvSpvIeXKpMb+7j84lkx4m4mYr5ErAcmN5KM7B6BqrAvRGjBIbbzqCczew==
594
+ "@babel/plugin-transform-named-capturing-groups-regex@^7.7.0":
595
+ version "7.7.0"
596
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.7.0.tgz#358e6fd869b9a4d8f5cbc79e4ed4fc340e60dcaf"
597
+ integrity sha512-+SicSJoKouPctL+j1pqktRVCgy+xAch1hWWTMy13j0IflnyNjaoskj+DwRQFimHbLqO3sq2oN2CXMvXq3Bgapg==
493
598
  dependencies:
494
- regexp-tree "^0.1.13"
599
+ "@babel/helper-create-regexp-features-plugin" "^7.7.0"
495
600
 
496
601
  "@babel/plugin-transform-new-target@^7.4.4":
497
602
  version "7.4.4"
@@ -556,10 +661,10 @@
556
661
  "@babel/helper-plugin-utils" "^7.0.0"
557
662
  "@babel/plugin-syntax-jsx" "^7.2.0"
558
663
 
559
- "@babel/plugin-transform-regenerator@^7.4.5":
560
- version "7.4.5"
561
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.4.5.tgz#629dc82512c55cee01341fb27bdfcb210354680f"
562
- integrity sha512-gBKRh5qAaCWntnd09S8QC7r3auLCqq5DI6O0DlfoyDjslSBVqBibrMdsqO+Uhmx3+BlOmE/Kw1HFxmGbv0N9dA==
664
+ "@babel/plugin-transform-regenerator@^7.7.0":
665
+ version "7.7.0"
666
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.7.0.tgz#f1b20b535e7716b622c99e989259d7dd942dd9cc"
667
+ integrity sha512-AXmvnC+0wuj/cFkkS/HFHIojxH3ffSXE+ttulrqWjZZRaUOonfJc60e1wSNT4rV8tIunvu/R3wCp71/tLAa9xg==
563
668
  dependencies:
564
669
  regenerator-transform "^0.14.0"
565
670
 
@@ -577,10 +682,10 @@
577
682
  dependencies:
578
683
  "@babel/helper-plugin-utils" "^7.0.0"
579
684
 
580
- "@babel/plugin-transform-spread@^7.2.0":
581
- version "7.2.2"
582
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.2.2.tgz#3103a9abe22f742b6d406ecd3cd49b774919b406"
583
- integrity sha512-KWfky/58vubwtS0hLqEnrWJjsMGaOeSBn90Ezn5Jeg9Z8KKHmELbP1yGylMlm5N6TPKeY9A2+UaSYLdxahg01w==
685
+ "@babel/plugin-transform-spread@^7.6.2":
686
+ version "7.6.2"
687
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.6.2.tgz#fc77cf798b24b10c46e1b51b1b88c2bf661bb8dd"
688
+ integrity sha512-DpSvPFryKdK1x+EDJYCy28nmAaIMdxmhot62jAXF/o99iA33Zj2Lmcp3vDmz+MUh0LNYVPvfj5iC3feb3/+PFg==
584
689
  dependencies:
585
690
  "@babel/helper-plugin-utils" "^7.0.0"
586
691
 
@@ -607,14 +712,13 @@
607
712
  dependencies:
608
713
  "@babel/helper-plugin-utils" "^7.0.0"
609
714
 
610
- "@babel/plugin-transform-unicode-regex@^7.4.4":
611
- version "7.4.4"
612
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.4.4.tgz#ab4634bb4f14d36728bf5978322b35587787970f"
613
- integrity sha512-il+/XdNw01i93+M9J9u4T7/e/Ue/vWfNZE4IRUQjplu2Mqb/AFTDimkw2tdEdSH50wuQXZAbXSql0UphQke+vA==
715
+ "@babel/plugin-transform-unicode-regex@^7.7.0":
716
+ version "7.7.0"
717
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.7.0.tgz#743d9bcc44080e3cc7d49259a066efa30f9187a3"
718
+ integrity sha512-RrThb0gdrNwFAqEAAx9OWgtx6ICK69x7i9tCnMdVrxQwSDp/Abu9DXFU5Hh16VP33Rmxh04+NGW28NsIkFvFKA==
614
719
  dependencies:
720
+ "@babel/helper-create-regexp-features-plugin" "^7.7.0"
615
721
  "@babel/helper-plugin-utils" "^7.0.0"
616
- "@babel/helper-regex" "^7.4.4"
617
- regexpu-core "^4.5.4"
618
722
 
619
723
  "@babel/polyfill@^7.4.4":
620
724
  version "7.6.0"
@@ -624,56 +728,57 @@
624
728
  core-js "^2.6.5"
625
729
  regenerator-runtime "^0.13.2"
626
730
 
627
- "@babel/preset-env@^7.5.5":
628
- version "7.6.0"
629
- resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.6.0.tgz#aae4141c506100bb2bfaa4ac2a5c12b395619e50"
630
- integrity sha512-1efzxFv/TcPsNXlRhMzRnkBFMeIqBBgzwmZwlFDw5Ubj0AGLeufxugirwZmkkX/ayi3owsSqoQ4fw8LkfK9SYg==
731
+ "@babel/preset-env@^7.6.2":
732
+ version "7.7.1"
733
+ resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.7.1.tgz#04a2ff53552c5885cf1083e291c8dd5490f744bb"
734
+ integrity sha512-/93SWhi3PxcVTDpSqC+Dp4YxUu3qZ4m7I76k0w73wYfn7bGVuRIO4QUz95aJksbS+AD1/mT1Ie7rbkT0wSplaA==
631
735
  dependencies:
632
- "@babel/helper-module-imports" "^7.0.0"
736
+ "@babel/helper-module-imports" "^7.7.0"
633
737
  "@babel/helper-plugin-utils" "^7.0.0"
634
- "@babel/plugin-proposal-async-generator-functions" "^7.2.0"
635
- "@babel/plugin-proposal-dynamic-import" "^7.5.0"
738
+ "@babel/plugin-proposal-async-generator-functions" "^7.7.0"
739
+ "@babel/plugin-proposal-dynamic-import" "^7.7.0"
636
740
  "@babel/plugin-proposal-json-strings" "^7.2.0"
637
- "@babel/plugin-proposal-object-rest-spread" "^7.5.5"
741
+ "@babel/plugin-proposal-object-rest-spread" "^7.6.2"
638
742
  "@babel/plugin-proposal-optional-catch-binding" "^7.2.0"
639
- "@babel/plugin-proposal-unicode-property-regex" "^7.4.4"
743
+ "@babel/plugin-proposal-unicode-property-regex" "^7.7.0"
640
744
  "@babel/plugin-syntax-async-generators" "^7.2.0"
641
745
  "@babel/plugin-syntax-dynamic-import" "^7.2.0"
642
746
  "@babel/plugin-syntax-json-strings" "^7.2.0"
643
747
  "@babel/plugin-syntax-object-rest-spread" "^7.2.0"
644
748
  "@babel/plugin-syntax-optional-catch-binding" "^7.2.0"
749
+ "@babel/plugin-syntax-top-level-await" "^7.7.0"
645
750
  "@babel/plugin-transform-arrow-functions" "^7.2.0"
646
- "@babel/plugin-transform-async-to-generator" "^7.5.0"
751
+ "@babel/plugin-transform-async-to-generator" "^7.7.0"
647
752
  "@babel/plugin-transform-block-scoped-functions" "^7.2.0"
648
- "@babel/plugin-transform-block-scoping" "^7.6.0"
649
- "@babel/plugin-transform-classes" "^7.5.5"
753
+ "@babel/plugin-transform-block-scoping" "^7.6.3"
754
+ "@babel/plugin-transform-classes" "^7.7.0"
650
755
  "@babel/plugin-transform-computed-properties" "^7.2.0"
651
756
  "@babel/plugin-transform-destructuring" "^7.6.0"
652
- "@babel/plugin-transform-dotall-regex" "^7.4.4"
757
+ "@babel/plugin-transform-dotall-regex" "^7.7.0"
653
758
  "@babel/plugin-transform-duplicate-keys" "^7.5.0"
654
759
  "@babel/plugin-transform-exponentiation-operator" "^7.2.0"
655
760
  "@babel/plugin-transform-for-of" "^7.4.4"
656
- "@babel/plugin-transform-function-name" "^7.4.4"
761
+ "@babel/plugin-transform-function-name" "^7.7.0"
657
762
  "@babel/plugin-transform-literals" "^7.2.0"
658
763
  "@babel/plugin-transform-member-expression-literals" "^7.2.0"
659
764
  "@babel/plugin-transform-modules-amd" "^7.5.0"
660
- "@babel/plugin-transform-modules-commonjs" "^7.6.0"
661
- "@babel/plugin-transform-modules-systemjs" "^7.5.0"
662
- "@babel/plugin-transform-modules-umd" "^7.2.0"
663
- "@babel/plugin-transform-named-capturing-groups-regex" "^7.6.0"
765
+ "@babel/plugin-transform-modules-commonjs" "^7.7.0"
766
+ "@babel/plugin-transform-modules-systemjs" "^7.7.0"
767
+ "@babel/plugin-transform-modules-umd" "^7.7.0"
768
+ "@babel/plugin-transform-named-capturing-groups-regex" "^7.7.0"
664
769
  "@babel/plugin-transform-new-target" "^7.4.4"
665
770
  "@babel/plugin-transform-object-super" "^7.5.5"
666
771
  "@babel/plugin-transform-parameters" "^7.4.4"
667
772
  "@babel/plugin-transform-property-literals" "^7.2.0"
668
- "@babel/plugin-transform-regenerator" "^7.4.5"
773
+ "@babel/plugin-transform-regenerator" "^7.7.0"
669
774
  "@babel/plugin-transform-reserved-words" "^7.2.0"
670
775
  "@babel/plugin-transform-shorthand-properties" "^7.2.0"
671
- "@babel/plugin-transform-spread" "^7.2.0"
776
+ "@babel/plugin-transform-spread" "^7.6.2"
672
777
  "@babel/plugin-transform-sticky-regex" "^7.2.0"
673
778
  "@babel/plugin-transform-template-literals" "^7.4.4"
674
779
  "@babel/plugin-transform-typeof-symbol" "^7.2.0"
675
- "@babel/plugin-transform-unicode-regex" "^7.4.4"
676
- "@babel/types" "^7.6.0"
780
+ "@babel/plugin-transform-unicode-regex" "^7.7.0"
781
+ "@babel/types" "^7.7.1"
677
782
  browserslist "^4.6.0"
678
783
  core-js-compat "^3.1.1"
679
784
  invariant "^2.2.2"
@@ -691,18 +796,18 @@
691
796
  "@babel/plugin-transform-react-jsx-self" "^7.0.0"
692
797
  "@babel/plugin-transform-react-jsx-source" "^7.0.0"
693
798
 
694
- "@babel/register@^7.5.5":
695
- version "7.6.0"
696
- resolved "https://registry.yarnpkg.com/@babel/register/-/register-7.6.0.tgz#76b6f466714680f4becafd45beeb2a7b87431abf"
697
- integrity sha512-78BomdN8el+x/nkup9KwtjJXuptW5oXMFmP11WoM2VJBjxrKv4grC3qjpLL8RGGUYUGsm57xnjYFM2uom+jWUQ==
799
+ "@babel/register@^7.6.2":
800
+ version "7.7.0"
801
+ resolved "https://registry.yarnpkg.com/@babel/register/-/register-7.7.0.tgz#4e23ecf840296ef79c605baaa5c89e1a2426314b"
802
+ integrity sha512-HV3GJzTvSoyOMWGYn2TAh6uL6g+gqKTgEZ99Q3+X9UURT1VPT/WcU46R61XftIc5rXytcOHZ4Z0doDlsjPomIg==
698
803
  dependencies:
699
804
  find-cache-dir "^2.0.0"
700
805
  lodash "^4.17.13"
701
- mkdirp "^0.5.1"
806
+ make-dir "^2.1.0"
702
807
  pirates "^4.0.0"
703
- source-map-support "^0.5.9"
808
+ source-map-support "^0.5.16"
704
809
 
705
- "@babel/template@^7.1.0", "@babel/template@^7.4.4", "@babel/template@^7.6.0":
810
+ "@babel/template@^7.1.0", "@babel/template@^7.4.4":
706
811
  version "7.6.0"
707
812
  resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.6.0.tgz#7f0159c7f5012230dad64cca42ec9bdb5c9536e6"
708
813
  integrity sha512-5AEH2EXD8euCk446b7edmgFdub/qfH1SN6Nii3+fyXP807QRx9Q73A2N5hNwRRslC2H9sNzaFhsPubkS4L8oNQ==
@@ -711,25 +816,34 @@
711
816
  "@babel/parser" "^7.6.0"
712
817
  "@babel/types" "^7.6.0"
713
818
 
714
- "@babel/traverse@^7.1.0", "@babel/traverse@^7.4.4", "@babel/traverse@^7.5.5", "@babel/traverse@^7.6.0":
715
- version "7.6.0"
716
- resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.6.0.tgz#389391d510f79be7ce2ddd6717be66d3fed4b516"
717
- integrity sha512-93t52SaOBgml/xY74lsmt7xOR4ufYvhb5c5qiM6lu4J/dWGMAfAh6eKw4PjLes6DI6nQgearoxnFJk60YchpvQ==
819
+ "@babel/template@^7.7.0":
820
+ version "7.7.0"
821
+ resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.7.0.tgz#4fadc1b8e734d97f56de39c77de76f2562e597d0"
822
+ integrity sha512-OKcwSYOW1mhWbnTBgQY5lvg1Fxg+VyfQGjcBduZFljfc044J5iDlnDSfhQ867O17XHiSCxYHUxHg2b7ryitbUQ==
823
+ dependencies:
824
+ "@babel/code-frame" "^7.0.0"
825
+ "@babel/parser" "^7.7.0"
826
+ "@babel/types" "^7.7.0"
827
+
828
+ "@babel/traverse@^7.1.0", "@babel/traverse@^7.4.4", "@babel/traverse@^7.5.5", "@babel/traverse@^7.6.2", "@babel/traverse@^7.7.0", "@babel/traverse@^7.7.2":
829
+ version "7.7.2"
830
+ resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.7.2.tgz#ef0a65e07a2f3c550967366b3d9b62a2dcbeae09"
831
+ integrity sha512-TM01cXib2+rgIZrGJOLaHV/iZUAxf4A0dt5auY6KNZ+cm6aschuJGqKJM3ROTt3raPUdIDk9siAufIFEleRwtw==
718
832
  dependencies:
719
833
  "@babel/code-frame" "^7.5.5"
720
- "@babel/generator" "^7.6.0"
721
- "@babel/helper-function-name" "^7.1.0"
722
- "@babel/helper-split-export-declaration" "^7.4.4"
723
- "@babel/parser" "^7.6.0"
724
- "@babel/types" "^7.6.0"
834
+ "@babel/generator" "^7.7.2"
835
+ "@babel/helper-function-name" "^7.7.0"
836
+ "@babel/helper-split-export-declaration" "^7.7.0"
837
+ "@babel/parser" "^7.7.2"
838
+ "@babel/types" "^7.7.2"
725
839
  debug "^4.1.0"
726
840
  globals "^11.1.0"
727
841
  lodash "^4.17.13"
728
842
 
729
- "@babel/types@^7.0.0", "@babel/types@^7.2.0", "@babel/types@^7.3.0", "@babel/types@^7.4.4", "@babel/types@^7.5.5", "@babel/types@^7.6.0":
730
- version "7.6.1"
731
- resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.6.1.tgz#53abf3308add3ac2a2884d539151c57c4b3ac648"
732
- integrity sha512-X7gdiuaCmA0uRjCmRtYJNAVCc/q+5xSgsfKJHqMN4iNLILX39677fJE1O40arPMh0TTtS9ItH67yre6c7k6t0g==
843
+ "@babel/types@^7.0.0", "@babel/types@^7.3.0", "@babel/types@^7.4.4", "@babel/types@^7.5.5", "@babel/types@^7.6.0", "@babel/types@^7.6.1", "@babel/types@^7.7.0", "@babel/types@^7.7.1", "@babel/types@^7.7.2":
844
+ version "7.7.2"
845
+ resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.7.2.tgz#550b82e5571dcd174af576e23f0adba7ffc683f7"
846
+ integrity sha512-YTf6PXoh3+eZgRCBzzP25Bugd2ngmpQVrk7kXX0i5N9BO7TFBtIgZYs7WtxtOGs8e6A4ZI7ECkbBCEHeXocvOA==
733
847
  dependencies:
734
848
  esutils "^2.0.2"
735
849
  lodash "^4.17.13"
@@ -1660,10 +1774,10 @@ continuable-cache@^0.3.1:
1660
1774
  resolved "https://registry.yarnpkg.com/continuable-cache/-/continuable-cache-0.3.1.tgz#bd727a7faed77e71ff3985ac93351a912733ad0f"
1661
1775
  integrity sha1-vXJ6f67XfnH/OYWskzUakSczrQ8=
1662
1776
 
1663
- convert-source-map@^1.1.0:
1664
- version "1.6.0"
1665
- resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.6.0.tgz#51b537a8c43e0f04dec1993bffcdd504e758ac20"
1666
- integrity sha512-eFu7XigvxdZ1ETfbgPBohgyQ/Z++C0eEhTor0qRwBw9unw+L0/6V8wkSuGgzdThkiS5lSpdptOQPD8Ak40a+7A==
1777
+ convert-source-map@^1.7.0:
1778
+ version "1.7.0"
1779
+ resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.7.0.tgz#17a2cb882d7f77d3490585e2ce6c524424a3a442"
1780
+ integrity sha512-4FJkXzKXEDB1snCFZlLP4gpC3JILicCpGbzG9f9G7tGqGCzETQ2hWPrcinA9oU4wtf2biUaEH5065UnMeR33oA==
1667
1781
  dependencies:
1668
1782
  safe-buffer "~5.1.1"
1669
1783
 
@@ -2085,20 +2199,20 @@ dir-glob@2.0.0:
2085
2199
  arrify "^1.0.1"
2086
2200
  path-type "^3.0.0"
2087
2201
 
2088
- docusaurus@^1.12.0:
2089
- version "1.13.0"
2090
- resolved "https://registry.yarnpkg.com/docusaurus/-/docusaurus-1.13.0.tgz#628c4491227ec422400b7421961b8603e389a2ae"
2091
- integrity sha512-3L/0p7CVM4jzAKoUzDDO4IFvLAJ6aA/8zin00tvLk32VQSdw+6S8JggE2ZFKOg+c+oxQ5MQUnsUxL/n5HyBtVg==
2202
+ docusaurus@^1.14.0:
2203
+ version "1.14.0"
2204
+ resolved "https://registry.yarnpkg.com/docusaurus/-/docusaurus-1.14.0.tgz#081b931098fcb0a9e837fe3e4851815c607cd632"
2205
+ integrity sha512-wdjdAQAk6Ndypl0F3BIg/EUtYgSCxN9g90KbZ+BkObs0Haz62ehCGPeCNqv97m88YVaYbFzk3geQk1jL77gz5g==
2092
2206
  dependencies:
2093
- "@babel/core" "^7.5.5"
2207
+ "@babel/core" "^7.6.2"
2094
2208
  "@babel/plugin-proposal-class-properties" "^7.5.5"
2095
- "@babel/plugin-proposal-object-rest-spread" "^7.5.5"
2209
+ "@babel/plugin-proposal-object-rest-spread" "^7.6.2"
2096
2210
  "@babel/polyfill" "^7.4.4"
2097
- "@babel/preset-env" "^7.5.5"
2211
+ "@babel/preset-env" "^7.6.2"
2098
2212
  "@babel/preset-react" "^7.0.0"
2099
- "@babel/register" "^7.5.5"
2100
- "@babel/traverse" "^7.5.5"
2101
- "@babel/types" "^7.5.5"
2213
+ "@babel/register" "^7.6.2"
2214
+ "@babel/traverse" "^7.6.2"
2215
+ "@babel/types" "^7.6.1"
2102
2216
  autoprefixer "^9.6.1"
2103
2217
  babylon "^6.18.0"
2104
2218
  chalk "^2.4.2"
@@ -4120,7 +4234,7 @@ make-dir@^1.0.0, make-dir@^1.2.0:
4120
4234
  dependencies:
4121
4235
  pify "^3.0.0"
4122
4236
 
4123
- make-dir@^2.0.0:
4237
+ make-dir@^2.0.0, make-dir@^2.1.0:
4124
4238
  version "2.1.0"
4125
4239
  resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-2.1.0.tgz#5f0310e18b8be898cc07009295a30ae41e91e6f5"
4126
4240
  integrity sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==
@@ -5520,12 +5634,7 @@ regex-not@^1.0.0, regex-not@^1.0.2:
5520
5634
  extend-shallow "^3.0.2"
5521
5635
  safe-regex "^1.1.0"
5522
5636
 
5523
- regexp-tree@^0.1.13:
5524
- version "0.1.13"
5525
- resolved "https://registry.yarnpkg.com/regexp-tree/-/regexp-tree-0.1.13.tgz#5b19ab9377edc68bc3679256840bb29afc158d7f"
5526
- integrity sha512-hwdV/GQY5F8ReLZWO+W1SRoN5YfpOKY6852+tBFcma72DKBIcHjPRIlIvQN35bCOljuAfP2G2iB0FC/w236mUw==
5527
-
5528
- regexpu-core@^4.5.4:
5637
+ regexpu-core@^4.6.0:
5529
5638
  version "4.6.0"
5530
5639
  resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-4.6.0.tgz#2037c18b327cfce8a6fea2a4ec441f2432afb8b6"
5531
5640
  integrity sha512-YlVaefl8P5BnFYOITTNzDvan1ulLOiXJzCNZxduTIosN17b87h3bvG9yHMoHaRuo88H4mQ06Aodj5VtYGGGiTg==
@@ -5945,10 +6054,10 @@ source-map-resolve@^0.5.0:
5945
6054
  source-map-url "^0.4.0"
5946
6055
  urix "^0.1.0"
5947
6056
 
5948
- source-map-support@^0.5.9:
5949
- version "0.5.13"
5950
- resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.13.tgz#31b24a9c2e73c2de85066c0feb7d44767ed52932"
5951
- integrity sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w==
6057
+ source-map-support@^0.5.16:
6058
+ version "0.5.16"
6059
+ resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.16.tgz#0ae069e7fe3ba7538c64c98515e35339eac5a042"
6060
+ integrity sha512-efyLRJDr68D9hBBNIPWFjhpFzURh+KJykQwvMyW5UiZzYwoF6l4YMMDIJJEyFWxWCqfyxLzz6tSfUFR+kXXsVQ==
5952
6061
  dependencies:
5953
6062
  buffer-from "^1.0.0"
5954
6063
  source-map "^0.6.0"
@@ -6416,11 +6525,6 @@ trim-repeated@^1.0.0:
6416
6525
  dependencies:
6417
6526
  escape-string-regexp "^1.0.2"
6418
6527
 
6419
- trim-right@^1.0.1:
6420
- version "1.0.1"
6421
- resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003"
6422
- integrity sha1-yy4SAwZ+DI3h9hQJS5/kVwTqYAM=
6423
-
6424
6528
  truncate-html@^1.0.2:
6425
6529
  version "1.0.3"
6426
6530
  resolved "https://registry.yarnpkg.com/truncate-html/-/truncate-html-1.0.3.tgz#0166dfc7890626130c2e4174c6b73d4d63993e5f"