goodcheck 2.4.3 → 2.4.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitignore +1 -0
- data/.travis.yml +3 -3
- data/CHANGELOG.md +5 -0
- data/README.md +4 -2
- data/Rakefile +16 -2
- data/docusaurus/website/package.json +1 -1
- data/docusaurus/website/versioned_docs/version-2.4.3/rules.md +80 -0
- data/docusaurus/website/versions.json +2 -0
- data/docusaurus/website/yarn.lock +309 -205
- data/goodcheck.gemspec +4 -3
- data/goodcheck.yml +10 -0
- data/lib/goodcheck/buffer.rb +1 -0
- data/lib/goodcheck/cli.rb +6 -2
- data/lib/goodcheck/commands/check.rb +8 -7
- data/lib/goodcheck/commands/config_loading.rb +1 -1
- data/lib/goodcheck/commands/test.rb +32 -4
- data/lib/goodcheck/config_loader.rb +1 -1
- data/lib/goodcheck/glob.rb +1 -1
- data/lib/goodcheck/issue.rb +1 -0
- data/lib/goodcheck/trigger.rb +2 -0
- data/lib/goodcheck/version.rb +1 -1
- metadata +39 -11
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2d2b83dcf223a54127f51e3f463c78a54ef510fa059e4d6ccf506fff94370d97
|
4
|
+
data.tar.gz: 18899f7fa4d04b5b163fec52cd731e0c806c99f685f595370bd425a973848bb4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ad8c59656bdf1f55c2d0b3aeaf5156a837c790381564c73564689231023a577fe6988ddbc0ae503e7b1be8dce5d95603128337498806ff765d6e2bfa7f899f37
|
7
|
+
data.tar.gz: '0683f2d36ab5f4eef7328512b488a95383f3ac0d73549cf1f7f724bf84cc70b041882ee3875137b3328aab1aa4ae45066b45d8a82ac21a9b195aebade2736a2d'
|
data/.gitignore
CHANGED
data/.travis.yml
CHANGED
data/CHANGELOG.md
CHANGED
@@ -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.
|
423
|
-
4.
|
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
|
|
@@ -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
|
+
```
|
@@ -9,19 +9,19 @@
|
|
9
9
|
dependencies:
|
10
10
|
"@babel/highlight" "^7.0.0"
|
11
11
|
|
12
|
-
"@babel/core@^7.
|
13
|
-
version "7.
|
14
|
-
resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.
|
15
|
-
integrity sha512-
|
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.
|
19
|
-
"@babel/helpers" "^7.
|
20
|
-
"@babel/parser" "^7.
|
21
|
-
"@babel/template" "^7.
|
22
|
-
"@babel/traverse" "^7.
|
23
|
-
"@babel/types" "^7.
|
24
|
-
convert-source-map "^1.
|
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.
|
33
|
-
version "7.
|
34
|
-
resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.
|
35
|
-
integrity sha512-
|
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.
|
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-
|
88
|
-
version "7.
|
89
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-
|
90
|
-
integrity sha512-
|
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-
|
93
|
-
|
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-
|
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.
|
173
|
-
version "7.
|
174
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.
|
175
|
-
integrity sha512-
|
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.
|
178
|
-
"@babel/helper-wrap-function" "^7.
|
179
|
-
"@babel/template" "^7.
|
180
|
-
"@babel/traverse" "^7.
|
181
|
-
"@babel/types" "^7.
|
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-
|
209
|
-
version "7.
|
210
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-
|
211
|
-
integrity sha512-
|
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/
|
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/
|
219
|
-
version "7.
|
220
|
-
resolved "https://registry.yarnpkg.com/@babel/
|
221
|
-
integrity sha512-
|
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/
|
224
|
-
"@babel/
|
225
|
-
"@babel/
|
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/
|
242
|
-
version "7.2
|
243
|
-
resolved "https://registry.yarnpkg.com/@babel/
|
244
|
-
integrity sha512
|
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.
|
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.
|
259
|
-
version "7.
|
260
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.
|
261
|
-
integrity sha512-
|
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.
|
275
|
-
version "7.
|
276
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.
|
277
|
-
integrity sha512-
|
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.
|
291
|
-
version "7.
|
292
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.
|
293
|
-
integrity sha512-
|
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.
|
349
|
-
version "7.
|
350
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.
|
351
|
-
integrity sha512-
|
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.
|
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.
|
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.
|
365
|
-
version "7.6.
|
366
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.6.
|
367
|
-
integrity sha512-
|
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.
|
373
|
-
version "7.
|
374
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.
|
375
|
-
integrity sha512
|
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.
|
378
|
-
"@babel/helper-define-map" "^7.
|
379
|
-
"@babel/helper-function-name" "^7.
|
380
|
-
"@babel/helper-optimise-call-expression" "^7.
|
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.
|
383
|
-
"@babel/helper-split-export-declaration" "^7.
|
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.
|
401
|
-
version "7.
|
402
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.
|
403
|
-
integrity sha512-
|
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.
|
432
|
-
version "7.
|
433
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.
|
434
|
-
integrity sha512-
|
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.
|
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.
|
463
|
-
version "7.
|
464
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.
|
465
|
-
integrity sha512-
|
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.
|
572
|
+
"@babel/helper-module-transforms" "^7.7.0"
|
468
573
|
"@babel/helper-plugin-utils" "^7.0.0"
|
469
|
-
"@babel/helper-simple-access" "^7.
|
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.
|
473
|
-
version "7.
|
474
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.
|
475
|
-
integrity sha512-
|
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.
|
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.
|
482
|
-
version "7.
|
483
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.
|
484
|
-
integrity sha512-
|
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.
|
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.
|
490
|
-
version "7.
|
491
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.
|
492
|
-
integrity sha512
|
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-
|
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.
|
560
|
-
version "7.
|
561
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.
|
562
|
-
integrity sha512-
|
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
|
581
|
-
version "7.
|
582
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.
|
583
|
-
integrity sha512-
|
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.
|
611
|
-
version "7.
|
612
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.
|
613
|
-
integrity sha512-
|
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.
|
628
|
-
version "7.
|
629
|
-
resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.
|
630
|
-
integrity sha512
|
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.
|
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.
|
635
|
-
"@babel/plugin-proposal-dynamic-import" "^7.
|
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.
|
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.
|
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.
|
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.
|
649
|
-
"@babel/plugin-transform-classes" "^7.
|
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.
|
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.
|
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.
|
661
|
-
"@babel/plugin-transform-modules-systemjs" "^7.
|
662
|
-
"@babel/plugin-transform-modules-umd" "^7.
|
663
|
-
"@babel/plugin-transform-named-capturing-groups-regex" "^7.
|
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.
|
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
|
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.
|
676
|
-
"@babel/types" "^7.
|
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.
|
695
|
-
version "7.
|
696
|
-
resolved "https://registry.yarnpkg.com/@babel/register/-/register-7.
|
697
|
-
integrity sha512-
|
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
|
-
|
806
|
+
make-dir "^2.1.0"
|
702
807
|
pirates "^4.0.0"
|
703
|
-
source-map-support "^0.5.
|
808
|
+
source-map-support "^0.5.16"
|
704
809
|
|
705
|
-
"@babel/template@^7.1.0", "@babel/template@^7.4.4"
|
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/
|
715
|
-
version "7.
|
716
|
-
resolved "https://registry.yarnpkg.com/@babel/
|
717
|
-
integrity sha512-
|
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.
|
721
|
-
"@babel/helper-function-name" "^7.
|
722
|
-
"@babel/helper-split-export-declaration" "^7.
|
723
|
-
"@babel/parser" "^7.
|
724
|
-
"@babel/types" "^7.
|
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.
|
730
|
-
version "7.
|
731
|
-
resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.
|
732
|
-
integrity sha512-
|
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.
|
1664
|
-
version "1.
|
1665
|
-
resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.
|
1666
|
-
integrity sha512-
|
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.
|
2089
|
-
version "1.
|
2090
|
-
resolved "https://registry.yarnpkg.com/docusaurus/-/docusaurus-1.
|
2091
|
-
integrity sha512-
|
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.
|
2207
|
+
"@babel/core" "^7.6.2"
|
2094
2208
|
"@babel/plugin-proposal-class-properties" "^7.5.5"
|
2095
|
-
"@babel/plugin-proposal-object-rest-spread" "^7.
|
2209
|
+
"@babel/plugin-proposal-object-rest-spread" "^7.6.2"
|
2096
2210
|
"@babel/polyfill" "^7.4.4"
|
2097
|
-
"@babel/preset-env" "^7.
|
2211
|
+
"@babel/preset-env" "^7.6.2"
|
2098
2212
|
"@babel/preset-react" "^7.0.0"
|
2099
|
-
"@babel/register" "^7.
|
2100
|
-
"@babel/traverse" "^7.
|
2101
|
-
"@babel/types" "^7.
|
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
|
-
|
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.
|
5949
|
-
version "0.5.
|
5950
|
-
resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.
|
5951
|
-
integrity sha512-
|
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"
|