webpacker 4.3.0 → 5.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.node-version +1 -1
- data/.travis.yml +8 -22
- data/CHANGELOG.md +17 -6
- data/Gemfile +1 -0
- data/Gemfile.lock +8 -5
- data/README.md +25 -229
- data/docs/css.md +3 -4
- data/docs/deployment.md +2 -2
- data/docs/docker.md +17 -17
- data/docs/engines.md +13 -0
- data/docs/integrations.md +220 -0
- data/docs/typescript.md +2 -3
- data/lib/install/loaders/svelte.js +2 -2
- data/lib/install/template.rb +1 -1
- data/lib/tasks/webpacker/check_node.rake +14 -7
- data/lib/tasks/webpacker/check_yarn.rake +16 -9
- data/lib/tasks/webpacker/clean.rake +12 -6
- data/lib/tasks/webpacker/clobber.rake +8 -4
- data/lib/tasks/webpacker/yarn_install.rake +5 -16
- data/lib/webpacker/commands.rb +33 -9
- data/lib/webpacker/dev_server_runner.rb +4 -4
- data/lib/webpacker/manifest.rb +4 -4
- data/lib/webpacker/version.rb +1 -1
- data/package.json +26 -26
- data/package/environments/__tests__/base.js +10 -0
- data/package/environments/base.js +12 -1
- data/package/environments/development.js +0 -4
- data/package/rules/sass.js +2 -1
- data/test/manifest_test.rb +37 -6
- data/test/rake_tasks_test.rb +11 -0
- data/test/test_app/app/javascript/packs/multi_entry.css +4 -0
- data/test/test_app/app/javascript/packs/multi_entry.js +4 -0
- data/webpacker.gemspec +4 -3
- data/yarn.lock +1131 -712
- metadata +28 -12
- data/gemfiles/Gemfile-rails.4.2.x +0 -9
- data/gemfiles/Gemfile-rails.5.0.x +0 -9
- data/gemfiles/Gemfile-rails.5.1.x +0 -9
data/webpacker.gemspec
CHANGED
@@ -15,11 +15,12 @@ Gem::Specification.new do |s|
|
|
15
15
|
"changelog_uri" => "https://github.com/rails/webpacker/blob/v#{Webpacker::VERSION}/CHANGELOG.md"
|
16
16
|
}
|
17
17
|
|
18
|
-
s.required_ruby_version = ">= 2.
|
18
|
+
s.required_ruby_version = ">= 2.4.0"
|
19
19
|
|
20
|
-
s.add_dependency "activesupport", ">=
|
21
|
-
s.add_dependency "railties", ">=
|
20
|
+
s.add_dependency "activesupport", ">= 5.2"
|
21
|
+
s.add_dependency "railties", ">= 5.2"
|
22
22
|
s.add_dependency "rack-proxy", ">= 0.6.1"
|
23
|
+
s.add_dependency "semantic_range", ">= 2.3.0"
|
23
24
|
|
24
25
|
s.add_development_dependency "bundler", ">= 1.3.0"
|
25
26
|
s.add_development_dependency "rubocop", "< 0.69"
|
data/yarn.lock
CHANGED
@@ -9,7 +9,23 @@
|
|
9
9
|
dependencies:
|
10
10
|
"@babel/highlight" "^7.0.0"
|
11
11
|
|
12
|
-
"@babel/
|
12
|
+
"@babel/code-frame@^7.8.3":
|
13
|
+
version "7.8.3"
|
14
|
+
resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.8.3.tgz#33e25903d7481181534e12ec0a25f16b6fcf419e"
|
15
|
+
integrity sha512-a9gxpmdXtZEInkCSHUJDLHZVBgb1QS0jhss4cPP93EW7s+uC5bikET2twEF3KV+7rDblJcmNvTR7VJejqd2C2g==
|
16
|
+
dependencies:
|
17
|
+
"@babel/highlight" "^7.8.3"
|
18
|
+
|
19
|
+
"@babel/compat-data@^7.8.6":
|
20
|
+
version "7.8.6"
|
21
|
+
resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.8.6.tgz#7eeaa0dfa17e50c7d9c0832515eee09b56f04e35"
|
22
|
+
integrity sha512-CurCIKPTkS25Mb8mz267vU95vy+TyUpnctEX2lV33xWNmHAfjruztgiPBbXZRh3xZZy1CYvGx6XfxyTVS+sk7Q==
|
23
|
+
dependencies:
|
24
|
+
browserslist "^4.8.5"
|
25
|
+
invariant "^2.2.4"
|
26
|
+
semver "^5.5.0"
|
27
|
+
|
28
|
+
"@babel/core@^7.1.0":
|
13
29
|
version "7.7.2"
|
14
30
|
resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.7.2.tgz#ea5b99693bcfc058116f42fa1dd54da412b29d91"
|
15
31
|
integrity sha512-eeD7VEZKfhK1KUXGiyPFettgF3m513f8FoBSWiQ1xTvl1RAopLs42Wp9+Ze911I6H0N9lNqJMDgoZT7gHsipeQ==
|
@@ -29,6 +45,27 @@
|
|
29
45
|
semver "^5.4.1"
|
30
46
|
source-map "^0.5.0"
|
31
47
|
|
48
|
+
"@babel/core@^7.8.7":
|
49
|
+
version "7.8.7"
|
50
|
+
resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.8.7.tgz#b69017d221ccdeb203145ae9da269d72cf102f3b"
|
51
|
+
integrity sha512-rBlqF3Yko9cynC5CCFy6+K/w2N+Sq/ff2BPy+Krp7rHlABIr5epbA7OxVeKoMHB39LZOp1UY5SuLjy6uWi35yA==
|
52
|
+
dependencies:
|
53
|
+
"@babel/code-frame" "^7.8.3"
|
54
|
+
"@babel/generator" "^7.8.7"
|
55
|
+
"@babel/helpers" "^7.8.4"
|
56
|
+
"@babel/parser" "^7.8.7"
|
57
|
+
"@babel/template" "^7.8.6"
|
58
|
+
"@babel/traverse" "^7.8.6"
|
59
|
+
"@babel/types" "^7.8.7"
|
60
|
+
convert-source-map "^1.7.0"
|
61
|
+
debug "^4.1.0"
|
62
|
+
gensync "^1.0.0-beta.1"
|
63
|
+
json5 "^2.1.0"
|
64
|
+
lodash "^4.17.13"
|
65
|
+
resolve "^1.3.2"
|
66
|
+
semver "^5.4.1"
|
67
|
+
source-map "^0.5.0"
|
68
|
+
|
32
69
|
"@babel/generator@^7.4.0", "@babel/generator@^7.7.2":
|
33
70
|
version "7.7.2"
|
34
71
|
resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.7.2.tgz#2f4852d04131a5e17ea4f6645488b5da66ebf3af"
|
@@ -39,66 +76,98 @@
|
|
39
76
|
lodash "^4.17.13"
|
40
77
|
source-map "^0.5.0"
|
41
78
|
|
42
|
-
"@babel/
|
43
|
-
version "7.
|
44
|
-
resolved "https://registry.yarnpkg.com/@babel/
|
45
|
-
integrity sha512-
|
79
|
+
"@babel/generator@^7.8.6":
|
80
|
+
version "7.8.6"
|
81
|
+
resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.8.6.tgz#57adf96d370c9a63c241cd719f9111468578537a"
|
82
|
+
integrity sha512-4bpOR5ZBz+wWcMeVtcf7FbjcFzCp+817z2/gHNncIRcM9MmKzUhtWCYAq27RAfUrAFwb+OCG1s9WEaVxfi6cjg==
|
46
83
|
dependencies:
|
47
|
-
"@babel/types" "^7.
|
84
|
+
"@babel/types" "^7.8.6"
|
85
|
+
jsesc "^2.5.1"
|
86
|
+
lodash "^4.17.13"
|
87
|
+
source-map "^0.5.0"
|
48
88
|
|
49
|
-
"@babel/
|
50
|
-
version "7.
|
51
|
-
resolved "https://registry.yarnpkg.com/@babel/
|
52
|
-
integrity sha512-
|
89
|
+
"@babel/generator@^7.8.7":
|
90
|
+
version "7.8.8"
|
91
|
+
resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.8.8.tgz#cdcd58caab730834cee9eeadb729e833b625da3e"
|
92
|
+
integrity sha512-HKyUVu69cZoclptr8t8U5b6sx6zoWjh8jiUhnuj3MpZuKT2dJ8zPTuiy31luq32swhI0SpwItCIlU8XW7BZeJg==
|
53
93
|
dependencies:
|
54
|
-
"@babel/
|
55
|
-
|
94
|
+
"@babel/types" "^7.8.7"
|
95
|
+
jsesc "^2.5.1"
|
96
|
+
lodash "^4.17.13"
|
97
|
+
source-map "^0.5.0"
|
56
98
|
|
57
|
-
"@babel/helper-
|
58
|
-
version "7.
|
59
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-
|
60
|
-
integrity sha512-
|
99
|
+
"@babel/helper-annotate-as-pure@^7.8.3":
|
100
|
+
version "7.8.3"
|
101
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.8.3.tgz#60bc0bc657f63a0924ff9a4b4a0b24a13cf4deee"
|
102
|
+
integrity sha512-6o+mJrZBxOoEX77Ezv9zwW7WV8DdluouRKNY/IR5u/YTMuKHgugHOzYWlYvYLpLA9nPsQCAAASpCIbjI9Mv+Uw==
|
61
103
|
dependencies:
|
62
|
-
"@babel/
|
63
|
-
"@babel/traverse" "^7.7.0"
|
64
|
-
"@babel/types" "^7.7.0"
|
104
|
+
"@babel/types" "^7.8.3"
|
65
105
|
|
66
|
-
"@babel/helper-
|
67
|
-
version "7.
|
68
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-
|
69
|
-
integrity sha512-
|
106
|
+
"@babel/helper-builder-binary-assignment-operator-visitor@^7.8.3":
|
107
|
+
version "7.8.3"
|
108
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.8.3.tgz#c84097a427a061ac56a1c30ebf54b7b22d241503"
|
109
|
+
integrity sha512-5eFOm2SyFPK4Rh3XMMRDjN7lBH0orh3ss0g3rTYZnBQ+r6YPj7lgDyCvPphynHvUrobJmeMignBr6Acw9mAPlw==
|
70
110
|
dependencies:
|
71
|
-
"@babel/helper-
|
72
|
-
"@babel/
|
73
|
-
"@babel/helper-optimise-call-expression" "^7.7.0"
|
74
|
-
"@babel/helper-plugin-utils" "^7.0.0"
|
75
|
-
"@babel/helper-replace-supers" "^7.7.0"
|
76
|
-
"@babel/helper-split-export-declaration" "^7.7.0"
|
111
|
+
"@babel/helper-explode-assignable-expression" "^7.8.3"
|
112
|
+
"@babel/types" "^7.8.3"
|
77
113
|
|
78
|
-
"@babel/helper-
|
79
|
-
version "7.7
|
80
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-
|
81
|
-
integrity sha512-
|
114
|
+
"@babel/helper-call-delegate@^7.8.7":
|
115
|
+
version "7.8.7"
|
116
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-call-delegate/-/helper-call-delegate-7.8.7.tgz#28a279c2e6c622a6233da548127f980751324cab"
|
117
|
+
integrity sha512-doAA5LAKhsFCR0LAFIf+r2RSMmC+m8f/oQ+URnUET/rWeEzC0yTRmAGyWkD4sSu3xwbS7MYQ2u+xlt1V5R56KQ==
|
82
118
|
dependencies:
|
83
|
-
"@babel/helper-
|
119
|
+
"@babel/helper-hoist-variables" "^7.8.3"
|
120
|
+
"@babel/traverse" "^7.8.3"
|
121
|
+
"@babel/types" "^7.8.7"
|
122
|
+
|
123
|
+
"@babel/helper-compilation-targets@^7.8.7":
|
124
|
+
version "7.8.7"
|
125
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.8.7.tgz#dac1eea159c0e4bd46e309b5a1b04a66b53c1dde"
|
126
|
+
integrity sha512-4mWm8DCK2LugIS+p1yArqvG1Pf162upsIsjE7cNBjez+NjliQpVhj20obE520nao0o14DaTnFJv+Fw5a0JpoUw==
|
127
|
+
dependencies:
|
128
|
+
"@babel/compat-data" "^7.8.6"
|
129
|
+
browserslist "^4.9.1"
|
130
|
+
invariant "^2.2.4"
|
131
|
+
levenary "^1.1.1"
|
132
|
+
semver "^5.5.0"
|
133
|
+
|
134
|
+
"@babel/helper-create-class-features-plugin@^7.8.3":
|
135
|
+
version "7.8.6"
|
136
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.8.6.tgz#243a5b46e2f8f0f674dc1387631eb6b28b851de0"
|
137
|
+
integrity sha512-klTBDdsr+VFFqaDHm5rR69OpEQtO2Qv8ECxHS1mNhJJvaHArR6a1xTf5K/eZW7eZpJbhCx3NW1Yt/sKsLXLblg==
|
138
|
+
dependencies:
|
139
|
+
"@babel/helper-function-name" "^7.8.3"
|
140
|
+
"@babel/helper-member-expression-to-functions" "^7.8.3"
|
141
|
+
"@babel/helper-optimise-call-expression" "^7.8.3"
|
142
|
+
"@babel/helper-plugin-utils" "^7.8.3"
|
143
|
+
"@babel/helper-replace-supers" "^7.8.6"
|
144
|
+
"@babel/helper-split-export-declaration" "^7.8.3"
|
145
|
+
|
146
|
+
"@babel/helper-create-regexp-features-plugin@^7.8.3":
|
147
|
+
version "7.8.6"
|
148
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.8.6.tgz#7fa040c97fb8aebe1247a5c645330c32d083066b"
|
149
|
+
integrity sha512-bPyujWfsHhV/ztUkwGHz/RPV1T1TDEsSZDsN42JPehndA+p1KKTh3npvTadux0ZhCrytx9tvjpWNowKby3tM6A==
|
150
|
+
dependencies:
|
151
|
+
"@babel/helper-annotate-as-pure" "^7.8.3"
|
152
|
+
"@babel/helper-regex" "^7.8.3"
|
84
153
|
regexpu-core "^4.6.0"
|
85
154
|
|
86
|
-
"@babel/helper-define-map@^7.
|
87
|
-
version "7.
|
88
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-define-map/-/helper-define-map-7.
|
89
|
-
integrity sha512-
|
155
|
+
"@babel/helper-define-map@^7.8.3":
|
156
|
+
version "7.8.3"
|
157
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-define-map/-/helper-define-map-7.8.3.tgz#a0655cad5451c3760b726eba875f1cd8faa02c15"
|
158
|
+
integrity sha512-PoeBYtxoZGtct3md6xZOCWPcKuMuk3IHhgxsRRNtnNShebf4C8YonTSblsK4tvDbm+eJAw2HAPOfCr+Q/YRG/g==
|
90
159
|
dependencies:
|
91
|
-
"@babel/helper-function-name" "^7.
|
92
|
-
"@babel/types" "^7.
|
160
|
+
"@babel/helper-function-name" "^7.8.3"
|
161
|
+
"@babel/types" "^7.8.3"
|
93
162
|
lodash "^4.17.13"
|
94
163
|
|
95
|
-
"@babel/helper-explode-assignable-expression@^7.
|
96
|
-
version "7.
|
97
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.
|
98
|
-
integrity sha512-
|
164
|
+
"@babel/helper-explode-assignable-expression@^7.8.3":
|
165
|
+
version "7.8.3"
|
166
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.8.3.tgz#a728dc5b4e89e30fc2dfc7d04fa28a930653f982"
|
167
|
+
integrity sha512-N+8eW86/Kj147bO9G2uclsg5pwfs/fqqY5rwgIL7eTBklgXjcOJ3btzS5iM6AitJcftnY7pm2lGsrJVYLGjzIw==
|
99
168
|
dependencies:
|
100
|
-
"@babel/traverse" "^7.
|
101
|
-
"@babel/types" "^7.
|
169
|
+
"@babel/traverse" "^7.8.3"
|
170
|
+
"@babel/types" "^7.8.3"
|
102
171
|
|
103
172
|
"@babel/helper-function-name@^7.7.0":
|
104
173
|
version "7.7.0"
|
@@ -109,93 +178,115 @@
|
|
109
178
|
"@babel/template" "^7.7.0"
|
110
179
|
"@babel/types" "^7.7.0"
|
111
180
|
|
112
|
-
"@babel/helper-
|
181
|
+
"@babel/helper-function-name@^7.8.3":
|
182
|
+
version "7.8.3"
|
183
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.8.3.tgz#eeeb665a01b1f11068e9fb86ad56a1cb1a824cca"
|
184
|
+
integrity sha512-BCxgX1BC2hD/oBlIFUgOCQDOPV8nSINxCwM3o93xP4P9Fq6aV5sgv2cOOITDMtCfQ+3PvHp3l689XZvAM9QyOA==
|
185
|
+
dependencies:
|
186
|
+
"@babel/helper-get-function-arity" "^7.8.3"
|
187
|
+
"@babel/template" "^7.8.3"
|
188
|
+
"@babel/types" "^7.8.3"
|
189
|
+
|
190
|
+
"@babel/helper-get-function-arity@^7.7.0":
|
113
191
|
version "7.7.0"
|
114
192
|
resolved "https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.7.0.tgz#c604886bc97287a1d1398092bc666bc3d7d7aa2d"
|
115
193
|
integrity sha512-tLdojOTz4vWcEnHWHCuPN5P85JLZWbm5Fx5ZsMEMPhF3Uoe3O7awrbM2nQ04bDOUToH/2tH/ezKEOR8zEYzqyw==
|
116
194
|
dependencies:
|
117
195
|
"@babel/types" "^7.7.0"
|
118
196
|
|
119
|
-
"@babel/helper-
|
120
|
-
version "7.
|
121
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-
|
122
|
-
integrity sha512-
|
197
|
+
"@babel/helper-get-function-arity@^7.8.3":
|
198
|
+
version "7.8.3"
|
199
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.8.3.tgz#b894b947bd004381ce63ea1db9f08547e920abd5"
|
200
|
+
integrity sha512-FVDR+Gd9iLjUMY1fzE2SR0IuaJToR4RkCDARVfsBBPSP53GEqSFjD8gNyxg246VUyc/ALRxFaAK8rVG7UT7xRA==
|
123
201
|
dependencies:
|
124
|
-
"@babel/types" "^7.
|
202
|
+
"@babel/types" "^7.8.3"
|
125
203
|
|
126
|
-
"@babel/helper-
|
127
|
-
version "7.
|
128
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-
|
129
|
-
integrity sha512-
|
204
|
+
"@babel/helper-hoist-variables@^7.8.3":
|
205
|
+
version "7.8.3"
|
206
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.8.3.tgz#1dbe9b6b55d78c9b4183fc8cdc6e30ceb83b7134"
|
207
|
+
integrity sha512-ky1JLOjcDUtSc+xkt0xhYff7Z6ILTAHKmZLHPxAhOP0Nd77O+3nCsd6uSVYur6nJnCI029CrNbYlc0LoPfAPQg==
|
130
208
|
dependencies:
|
131
|
-
"@babel/types" "^7.
|
209
|
+
"@babel/types" "^7.8.3"
|
132
210
|
|
133
|
-
"@babel/helper-
|
134
|
-
version "7.
|
135
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-
|
136
|
-
integrity sha512-
|
211
|
+
"@babel/helper-member-expression-to-functions@^7.8.3":
|
212
|
+
version "7.8.3"
|
213
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.8.3.tgz#659b710498ea6c1d9907e0c73f206eee7dadc24c"
|
214
|
+
integrity sha512-fO4Egq88utkQFjbPrSHGmGLFqmrshs11d46WI+WZDESt7Wu7wN2G2Iu+NMMZJFDOVRHAMIkB5SNh30NtwCA7RA==
|
137
215
|
dependencies:
|
138
|
-
"@babel/types" "^7.
|
216
|
+
"@babel/types" "^7.8.3"
|
139
217
|
|
140
|
-
"@babel/helper-module-
|
141
|
-
version "7.
|
142
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-module-
|
143
|
-
integrity sha512-
|
218
|
+
"@babel/helper-module-imports@^7.8.3":
|
219
|
+
version "7.8.3"
|
220
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.8.3.tgz#7fe39589b39c016331b6b8c3f441e8f0b1419498"
|
221
|
+
integrity sha512-R0Bx3jippsbAEtzkpZ/6FIiuzOURPcMjHp+Z6xPe6DtApDJx+w7UYyOLanZqO8+wKR9G10s/FmHXvxaMd9s6Kg==
|
144
222
|
dependencies:
|
145
|
-
"@babel/
|
146
|
-
|
147
|
-
|
148
|
-
|
149
|
-
|
223
|
+
"@babel/types" "^7.8.3"
|
224
|
+
|
225
|
+
"@babel/helper-module-transforms@^7.8.3":
|
226
|
+
version "7.8.6"
|
227
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.8.6.tgz#6a13b5eecadc35692047073a64e42977b97654a4"
|
228
|
+
integrity sha512-RDnGJSR5EFBJjG3deY0NiL0K9TO8SXxS9n/MPsbPK/s9LbQymuLNtlzvDiNS7IpecuL45cMeLVkA+HfmlrnkRg==
|
229
|
+
dependencies:
|
230
|
+
"@babel/helper-module-imports" "^7.8.3"
|
231
|
+
"@babel/helper-replace-supers" "^7.8.6"
|
232
|
+
"@babel/helper-simple-access" "^7.8.3"
|
233
|
+
"@babel/helper-split-export-declaration" "^7.8.3"
|
234
|
+
"@babel/template" "^7.8.6"
|
235
|
+
"@babel/types" "^7.8.6"
|
150
236
|
lodash "^4.17.13"
|
151
237
|
|
152
|
-
"@babel/helper-optimise-call-expression@^7.
|
153
|
-
version "7.
|
154
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.
|
155
|
-
integrity sha512-
|
238
|
+
"@babel/helper-optimise-call-expression@^7.8.3":
|
239
|
+
version "7.8.3"
|
240
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.8.3.tgz#7ed071813d09c75298ef4f208956006b6111ecb9"
|
241
|
+
integrity sha512-Kag20n86cbO2AvHca6EJsvqAd82gc6VMGule4HwebwMlwkpXuVqrNRj6CkCV2sKxgi9MyAUnZVnZ6lJ1/vKhHQ==
|
156
242
|
dependencies:
|
157
|
-
"@babel/types" "^7.
|
243
|
+
"@babel/types" "^7.8.3"
|
158
244
|
|
159
245
|
"@babel/helper-plugin-utils@^7.0.0":
|
160
246
|
version "7.0.0"
|
161
247
|
resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.0.0.tgz#bbb3fbee98661c569034237cc03967ba99b4f250"
|
162
248
|
integrity sha512-CYAOUCARwExnEixLdB6sDm2dIJ/YgEAKDM1MOeMeZu9Ld/bDgVo8aiWrXwcY7OBh+1Ea2uUcVRcxKk0GJvW7QA==
|
163
249
|
|
164
|
-
"@babel/helper-
|
165
|
-
version "7.
|
166
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-
|
167
|
-
integrity sha512-
|
250
|
+
"@babel/helper-plugin-utils@^7.8.0", "@babel/helper-plugin-utils@^7.8.3":
|
251
|
+
version "7.8.3"
|
252
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.8.3.tgz#9ea293be19babc0f52ff8ca88b34c3611b208670"
|
253
|
+
integrity sha512-j+fq49Xds2smCUNYmEHF9kGNkhbet6yVIBp4e6oeQpH1RUs/Ir06xUKzDjDkGcaaokPiTNs2JBWHjaE4csUkZQ==
|
254
|
+
|
255
|
+
"@babel/helper-regex@^7.8.3":
|
256
|
+
version "7.8.3"
|
257
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-regex/-/helper-regex-7.8.3.tgz#139772607d51b93f23effe72105b319d2a4c6965"
|
258
|
+
integrity sha512-BWt0QtYv/cg/NecOAZMdcn/waj/5P26DR4mVLXfFtDokSR6fyuG0Pj+e2FqtSME+MqED1khnSMulkmGl8qWiUQ==
|
168
259
|
dependencies:
|
169
260
|
lodash "^4.17.13"
|
170
261
|
|
171
|
-
"@babel/helper-remap-async-to-generator@^7.
|
172
|
-
version "7.
|
173
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.
|
174
|
-
integrity sha512-
|
262
|
+
"@babel/helper-remap-async-to-generator@^7.8.3":
|
263
|
+
version "7.8.3"
|
264
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.8.3.tgz#273c600d8b9bf5006142c1e35887d555c12edd86"
|
265
|
+
integrity sha512-kgwDmw4fCg7AVgS4DukQR/roGp+jP+XluJE5hsRZwxCYGg+Rv9wSGErDWhlI90FODdYfd4xG4AQRiMDjjN0GzA==
|
175
266
|
dependencies:
|
176
|
-
"@babel/helper-annotate-as-pure" "^7.
|
177
|
-
"@babel/helper-wrap-function" "^7.
|
178
|
-
"@babel/template" "^7.
|
179
|
-
"@babel/traverse" "^7.
|
180
|
-
"@babel/types" "^7.
|
267
|
+
"@babel/helper-annotate-as-pure" "^7.8.3"
|
268
|
+
"@babel/helper-wrap-function" "^7.8.3"
|
269
|
+
"@babel/template" "^7.8.3"
|
270
|
+
"@babel/traverse" "^7.8.3"
|
271
|
+
"@babel/types" "^7.8.3"
|
181
272
|
|
182
|
-
"@babel/helper-replace-supers@^7.
|
183
|
-
version "7.
|
184
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.
|
185
|
-
integrity sha512-
|
273
|
+
"@babel/helper-replace-supers@^7.8.3", "@babel/helper-replace-supers@^7.8.6":
|
274
|
+
version "7.8.6"
|
275
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.8.6.tgz#5ada744fd5ad73203bf1d67459a27dcba67effc8"
|
276
|
+
integrity sha512-PeMArdA4Sv/Wf4zXwBKPqVj7n9UF/xg6slNRtZW84FM7JpE1CbG8B612FyM4cxrf4fMAMGO0kR7voy1ForHHFA==
|
186
277
|
dependencies:
|
187
|
-
"@babel/helper-member-expression-to-functions" "^7.
|
188
|
-
"@babel/helper-optimise-call-expression" "^7.
|
189
|
-
"@babel/traverse" "^7.
|
190
|
-
"@babel/types" "^7.
|
278
|
+
"@babel/helper-member-expression-to-functions" "^7.8.3"
|
279
|
+
"@babel/helper-optimise-call-expression" "^7.8.3"
|
280
|
+
"@babel/traverse" "^7.8.6"
|
281
|
+
"@babel/types" "^7.8.6"
|
191
282
|
|
192
|
-
"@babel/helper-simple-access@^7.
|
193
|
-
version "7.
|
194
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.
|
195
|
-
integrity sha512-
|
283
|
+
"@babel/helper-simple-access@^7.8.3":
|
284
|
+
version "7.8.3"
|
285
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.8.3.tgz#7f8109928b4dab4654076986af575231deb639ae"
|
286
|
+
integrity sha512-VNGUDjx5cCWg4vvCTR8qQ7YJYZ+HBjxOgXEl7ounz+4Sn7+LMD3CFrCTEU6/qXKbA2nKg21CwhhBzO0RpRbdCw==
|
196
287
|
dependencies:
|
197
|
-
"@babel/template" "^7.
|
198
|
-
"@babel/types" "^7.
|
288
|
+
"@babel/template" "^7.8.3"
|
289
|
+
"@babel/types" "^7.8.3"
|
199
290
|
|
200
291
|
"@babel/helper-split-export-declaration@^7.7.0":
|
201
292
|
version "7.7.0"
|
@@ -204,15 +295,22 @@
|
|
204
295
|
dependencies:
|
205
296
|
"@babel/types" "^7.7.0"
|
206
297
|
|
207
|
-
"@babel/helper-
|
208
|
-
version "7.
|
209
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-
|
210
|
-
integrity sha512-
|
298
|
+
"@babel/helper-split-export-declaration@^7.8.3":
|
299
|
+
version "7.8.3"
|
300
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.8.3.tgz#31a9f30070f91368a7182cf05f831781065fc7a9"
|
301
|
+
integrity sha512-3x3yOeyBhW851hroze7ElzdkeRXQYQbFIb7gLK1WQYsw2GWDay5gAJNw1sWJ0VFP6z5J1whqeXH/WCdCjZv6dA==
|
211
302
|
dependencies:
|
212
|
-
"@babel/
|
213
|
-
|
214
|
-
|
215
|
-
|
303
|
+
"@babel/types" "^7.8.3"
|
304
|
+
|
305
|
+
"@babel/helper-wrap-function@^7.8.3":
|
306
|
+
version "7.8.3"
|
307
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.8.3.tgz#9dbdb2bb55ef14aaa01fe8c99b629bd5352d8610"
|
308
|
+
integrity sha512-LACJrbUET9cQDzb6kG7EeD7+7doC3JNvUgTEQOx2qaO1fKlzE/Bf05qs9w1oXQMmXlPO65lC3Tq9S6gZpTErEQ==
|
309
|
+
dependencies:
|
310
|
+
"@babel/helper-function-name" "^7.8.3"
|
311
|
+
"@babel/template" "^7.8.3"
|
312
|
+
"@babel/traverse" "^7.8.3"
|
313
|
+
"@babel/types" "^7.8.3"
|
216
314
|
|
217
315
|
"@babel/helpers@^7.7.0":
|
218
316
|
version "7.7.0"
|
@@ -223,6 +321,15 @@
|
|
223
321
|
"@babel/traverse" "^7.7.0"
|
224
322
|
"@babel/types" "^7.7.0"
|
225
323
|
|
324
|
+
"@babel/helpers@^7.8.4":
|
325
|
+
version "7.8.4"
|
326
|
+
resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.8.4.tgz#754eb3ee727c165e0a240d6c207de7c455f36f73"
|
327
|
+
integrity sha512-VPbe7wcQ4chu4TDQjimHv/5tj73qz88o12EPkO2ValS2QiQS/1F2SsjyIGNnAD0vF/nZS6Cf9i+vW6HIlnaR8w==
|
328
|
+
dependencies:
|
329
|
+
"@babel/template" "^7.8.3"
|
330
|
+
"@babel/traverse" "^7.8.4"
|
331
|
+
"@babel/types" "^7.8.3"
|
332
|
+
|
226
333
|
"@babel/highlight@^7.0.0":
|
227
334
|
version "7.5.0"
|
228
335
|
resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.5.0.tgz#56d11312bd9248fa619591d02472be6e8cb32540"
|
@@ -232,428 +339,519 @@
|
|
232
339
|
esutils "^2.0.2"
|
233
340
|
js-tokens "^4.0.0"
|
234
341
|
|
342
|
+
"@babel/highlight@^7.8.3":
|
343
|
+
version "7.8.3"
|
344
|
+
resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.8.3.tgz#28f173d04223eaaa59bc1d439a3836e6d1265797"
|
345
|
+
integrity sha512-PX4y5xQUvy0fnEVHrYOarRPXVWafSjTW9T0Hab8gVIawpl2Sj0ORyrygANq+KjcNlSSTw0YCLSNA8OyZ1I4yEg==
|
346
|
+
dependencies:
|
347
|
+
chalk "^2.0.0"
|
348
|
+
esutils "^2.0.2"
|
349
|
+
js-tokens "^4.0.0"
|
350
|
+
|
235
351
|
"@babel/parser@^7.1.0", "@babel/parser@^7.4.3", "@babel/parser@^7.7.0", "@babel/parser@^7.7.2":
|
236
352
|
version "7.7.3"
|
237
353
|
resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.7.3.tgz#5fad457c2529de476a248f75b0f090b3060af043"
|
238
354
|
integrity sha512-bqv+iCo9i+uLVbI0ILzKkvMorqxouI+GbV13ivcARXn9NNEabi2IEz912IgNpT/60BNXac5dgcfjb94NjsF33A==
|
239
355
|
|
240
|
-
"@babel/
|
241
|
-
version "7.
|
242
|
-
resolved "https://registry.yarnpkg.com/@babel/
|
243
|
-
integrity sha512-
|
244
|
-
dependencies:
|
245
|
-
"@babel/helper-plugin-utils" "^7.0.0"
|
246
|
-
"@babel/helper-remap-async-to-generator" "^7.7.0"
|
247
|
-
"@babel/plugin-syntax-async-generators" "^7.2.0"
|
356
|
+
"@babel/parser@^7.8.6":
|
357
|
+
version "7.8.6"
|
358
|
+
resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.8.6.tgz#ba5c9910cddb77685a008e3c587af8d27b67962c"
|
359
|
+
integrity sha512-trGNYSfwq5s0SgM1BMEB8hX3NDmO7EP2wsDGDexiaKMB92BaRpS+qZfpkMqUBhcsOTBwNy9B/jieo4ad/t/z2g==
|
248
360
|
|
249
|
-
"@babel/
|
250
|
-
version "7.
|
251
|
-
resolved "https://registry.yarnpkg.com/@babel/
|
252
|
-
integrity sha512-
|
253
|
-
dependencies:
|
254
|
-
"@babel/helper-create-class-features-plugin" "^7.7.0"
|
255
|
-
"@babel/helper-plugin-utils" "^7.0.0"
|
361
|
+
"@babel/parser@^7.8.7":
|
362
|
+
version "7.8.8"
|
363
|
+
resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.8.8.tgz#4c3b7ce36db37e0629be1f0d50a571d2f86f6cd4"
|
364
|
+
integrity sha512-mO5GWzBPsPf6865iIbzNE0AvkKF3NE+2S3eRUpE+FE07BOAkXh6G+GW/Pj01hhXjve1WScbaIO4UlY1JKeqCcA==
|
256
365
|
|
257
|
-
"@babel/plugin-proposal-
|
258
|
-
version "7.
|
259
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-
|
260
|
-
integrity sha512-
|
366
|
+
"@babel/plugin-proposal-async-generator-functions@^7.8.3":
|
367
|
+
version "7.8.3"
|
368
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.8.3.tgz#bad329c670b382589721b27540c7d288601c6e6f"
|
369
|
+
integrity sha512-NZ9zLv848JsV3hs8ryEh7Uaz/0KsmPLqv0+PdkDJL1cJy0K4kOCFa8zc1E3mp+RHPQcpdfb/6GovEsW4VDrOMw==
|
261
370
|
dependencies:
|
262
|
-
"@babel/helper-plugin-utils" "^7.
|
263
|
-
"@babel/
|
371
|
+
"@babel/helper-plugin-utils" "^7.8.3"
|
372
|
+
"@babel/helper-remap-async-to-generator" "^7.8.3"
|
373
|
+
"@babel/plugin-syntax-async-generators" "^7.8.0"
|
264
374
|
|
265
|
-
"@babel/plugin-proposal-
|
266
|
-
version "7.
|
267
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-
|
268
|
-
integrity sha512-
|
375
|
+
"@babel/plugin-proposal-class-properties@^7.8.3":
|
376
|
+
version "7.8.3"
|
377
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.8.3.tgz#5e06654af5cd04b608915aada9b2a6788004464e"
|
378
|
+
integrity sha512-EqFhbo7IosdgPgZggHaNObkmO1kNUe3slaKu54d5OWvy+p9QIKOzK1GAEpAIsZtWVtPXUHSMcT4smvDrCfY4AA==
|
269
379
|
dependencies:
|
270
|
-
"@babel/helper-plugin
|
271
|
-
"@babel/plugin-
|
380
|
+
"@babel/helper-create-class-features-plugin" "^7.8.3"
|
381
|
+
"@babel/helper-plugin-utils" "^7.8.3"
|
272
382
|
|
273
|
-
"@babel/plugin-proposal-
|
274
|
-
version "7.
|
275
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-
|
276
|
-
integrity sha512-
|
383
|
+
"@babel/plugin-proposal-dynamic-import@^7.8.3":
|
384
|
+
version "7.8.3"
|
385
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.8.3.tgz#38c4fe555744826e97e2ae930b0fb4cc07e66054"
|
386
|
+
integrity sha512-NyaBbyLFXFLT9FP+zk0kYlUlA8XtCUbehs67F0nnEg7KICgMc2mNkIeu9TYhKzyXMkrapZFwAhXLdnt4IYHy1w==
|
277
387
|
dependencies:
|
278
|
-
"@babel/helper-plugin-utils" "^7.
|
279
|
-
"@babel/plugin-syntax-
|
388
|
+
"@babel/helper-plugin-utils" "^7.8.3"
|
389
|
+
"@babel/plugin-syntax-dynamic-import" "^7.8.0"
|
280
390
|
|
281
|
-
"@babel/plugin-proposal-
|
282
|
-
version "7.
|
283
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-
|
284
|
-
integrity sha512-
|
391
|
+
"@babel/plugin-proposal-json-strings@^7.8.3":
|
392
|
+
version "7.8.3"
|
393
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.8.3.tgz#da5216b238a98b58a1e05d6852104b10f9a70d6b"
|
394
|
+
integrity sha512-KGhQNZ3TVCQG/MjRbAUwuH+14y9q0tpxs1nWWs3pbSleRdDro9SAMMDyye8HhY1gqZ7/NqIc8SKhya0wRDgP1Q==
|
285
395
|
dependencies:
|
286
|
-
"@babel/helper-plugin-utils" "^7.
|
287
|
-
"@babel/plugin-syntax-
|
396
|
+
"@babel/helper-plugin-utils" "^7.8.3"
|
397
|
+
"@babel/plugin-syntax-json-strings" "^7.8.0"
|
288
398
|
|
289
|
-
"@babel/plugin-proposal-
|
290
|
-
version "7.
|
291
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-
|
292
|
-
integrity sha512-
|
399
|
+
"@babel/plugin-proposal-nullish-coalescing-operator@^7.8.3":
|
400
|
+
version "7.8.3"
|
401
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.8.3.tgz#e4572253fdeed65cddeecfdab3f928afeb2fd5d2"
|
402
|
+
integrity sha512-TS9MlfzXpXKt6YYomudb/KU7nQI6/xnapG6in1uZxoxDghuSMZsPb6D2fyUwNYSAp4l1iR7QtFOjkqcRYcUsfw==
|
293
403
|
dependencies:
|
294
|
-
"@babel/helper-
|
295
|
-
"@babel/
|
404
|
+
"@babel/helper-plugin-utils" "^7.8.3"
|
405
|
+
"@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.0"
|
296
406
|
|
297
|
-
"@babel/plugin-
|
298
|
-
version "7.
|
299
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-
|
300
|
-
integrity sha512-
|
407
|
+
"@babel/plugin-proposal-object-rest-spread@^7.8.3":
|
408
|
+
version "7.8.3"
|
409
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.8.3.tgz#eb5ae366118ddca67bed583b53d7554cad9951bb"
|
410
|
+
integrity sha512-8qvuPwU/xxUCt78HocNlv0mXXo0wdh9VT1R04WU8HGOfaOob26pF+9P5/lYjN/q7DHOX1bvX60hnhOvuQUJdbA==
|
301
411
|
dependencies:
|
302
|
-
"@babel/helper-plugin-utils" "^7.
|
412
|
+
"@babel/helper-plugin-utils" "^7.8.3"
|
413
|
+
"@babel/plugin-syntax-object-rest-spread" "^7.8.0"
|
303
414
|
|
304
|
-
"@babel/plugin-
|
305
|
-
version "7.
|
306
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-
|
307
|
-
integrity sha512-
|
415
|
+
"@babel/plugin-proposal-optional-catch-binding@^7.8.3":
|
416
|
+
version "7.8.3"
|
417
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.8.3.tgz#9dee96ab1650eed88646ae9734ca167ac4a9c5c9"
|
418
|
+
integrity sha512-0gkX7J7E+AtAw9fcwlVQj8peP61qhdg/89D5swOkjYbkboA2CVckn3kiyum1DE0wskGb7KJJxBdyEBApDLLVdw==
|
308
419
|
dependencies:
|
309
|
-
"@babel/helper-plugin-utils" "^7.
|
420
|
+
"@babel/helper-plugin-utils" "^7.8.3"
|
421
|
+
"@babel/plugin-syntax-optional-catch-binding" "^7.8.0"
|
310
422
|
|
311
|
-
"@babel/plugin-
|
312
|
-
version "7.
|
313
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-
|
314
|
-
integrity sha512-
|
423
|
+
"@babel/plugin-proposal-optional-chaining@^7.8.3":
|
424
|
+
version "7.8.3"
|
425
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.8.3.tgz#ae10b3214cb25f7adb1f3bc87ba42ca10b7e2543"
|
426
|
+
integrity sha512-QIoIR9abkVn+seDE3OjA08jWcs3eZ9+wJCKSRgo3WdEU2csFYgdScb+8qHB3+WXsGJD55u+5hWCISI7ejXS+kg==
|
315
427
|
dependencies:
|
316
|
-
"@babel/helper-plugin-utils" "^7.
|
428
|
+
"@babel/helper-plugin-utils" "^7.8.3"
|
429
|
+
"@babel/plugin-syntax-optional-chaining" "^7.8.0"
|
317
430
|
|
318
|
-
"@babel/plugin-
|
319
|
-
version "7.
|
320
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-
|
321
|
-
integrity sha512-
|
431
|
+
"@babel/plugin-proposal-unicode-property-regex@^7.8.3":
|
432
|
+
version "7.8.3"
|
433
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.8.3.tgz#b646c3adea5f98800c9ab45105ac34d06cd4a47f"
|
434
|
+
integrity sha512-1/1/rEZv2XGweRwwSkLpY+s60za9OZ1hJs4YDqFHCw0kYWYwL5IFljVY1MYBL+weT1l9pokDO2uhSTLVxzoHkQ==
|
322
435
|
dependencies:
|
323
|
-
"@babel/helper-plugin
|
436
|
+
"@babel/helper-create-regexp-features-plugin" "^7.8.3"
|
437
|
+
"@babel/helper-plugin-utils" "^7.8.3"
|
324
438
|
|
325
|
-
"@babel/plugin-syntax-
|
326
|
-
version "7.
|
327
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-
|
328
|
-
integrity sha512-
|
439
|
+
"@babel/plugin-syntax-async-generators@^7.8.0":
|
440
|
+
version "7.8.4"
|
441
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz#a983fb1aeb2ec3f6ed042a210f640e90e786fe0d"
|
442
|
+
integrity sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==
|
329
443
|
dependencies:
|
330
|
-
"@babel/helper-plugin-utils" "^7.
|
444
|
+
"@babel/helper-plugin-utils" "^7.8.0"
|
331
445
|
|
332
|
-
"@babel/plugin-syntax-
|
333
|
-
version "7.
|
334
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-
|
335
|
-
integrity sha512-
|
446
|
+
"@babel/plugin-syntax-dynamic-import@^7.8.0", "@babel/plugin-syntax-dynamic-import@^7.8.3":
|
447
|
+
version "7.8.3"
|
448
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz#62bf98b2da3cd21d626154fc96ee5b3cb68eacb3"
|
449
|
+
integrity sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==
|
336
450
|
dependencies:
|
337
|
-
"@babel/helper-plugin-utils" "^7.
|
451
|
+
"@babel/helper-plugin-utils" "^7.8.0"
|
338
452
|
|
339
|
-
"@babel/plugin-
|
340
|
-
version "7.
|
341
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-
|
342
|
-
integrity sha512-
|
453
|
+
"@babel/plugin-syntax-json-strings@^7.8.0":
|
454
|
+
version "7.8.3"
|
455
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz#01ca21b668cd8218c9e640cb6dd88c5412b2c96a"
|
456
|
+
integrity sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==
|
343
457
|
dependencies:
|
344
|
-
"@babel/helper-plugin-utils" "^7.
|
458
|
+
"@babel/helper-plugin-utils" "^7.8.0"
|
345
459
|
|
346
|
-
"@babel/plugin-
|
347
|
-
version "7.
|
348
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-
|
349
|
-
integrity sha512-
|
460
|
+
"@babel/plugin-syntax-nullish-coalescing-operator@^7.8.0":
|
461
|
+
version "7.8.3"
|
462
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz#167ed70368886081f74b5c36c65a88c03b66d1a9"
|
463
|
+
integrity sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==
|
350
464
|
dependencies:
|
351
|
-
"@babel/helper-
|
352
|
-
"@babel/helper-plugin-utils" "^7.0.0"
|
353
|
-
"@babel/helper-remap-async-to-generator" "^7.7.0"
|
465
|
+
"@babel/helper-plugin-utils" "^7.8.0"
|
354
466
|
|
355
|
-
"@babel/plugin-
|
467
|
+
"@babel/plugin-syntax-object-rest-spread@^7.0.0":
|
356
468
|
version "7.2.0"
|
357
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-
|
358
|
-
integrity sha512-
|
469
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.2.0.tgz#3b7a3e733510c57e820b9142a6579ac8b0dfad2e"
|
470
|
+
integrity sha512-t0JKGgqk2We+9may3t0xDdmneaXmyxq0xieYcKHxIsrJO64n1OiMWNUtc5gQK1PA0NpdCRrtZp4z+IUaKugrSA==
|
359
471
|
dependencies:
|
360
472
|
"@babel/helper-plugin-utils" "^7.0.0"
|
361
473
|
|
362
|
-
"@babel/plugin-
|
363
|
-
version "7.
|
364
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-
|
365
|
-
integrity sha512-
|
474
|
+
"@babel/plugin-syntax-object-rest-spread@^7.8.0":
|
475
|
+
version "7.8.3"
|
476
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz#60e225edcbd98a640332a2e72dd3e66f1af55871"
|
477
|
+
integrity sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==
|
366
478
|
dependencies:
|
367
|
-
"@babel/helper-plugin-utils" "^7.
|
368
|
-
lodash "^4.17.13"
|
479
|
+
"@babel/helper-plugin-utils" "^7.8.0"
|
369
480
|
|
370
|
-
"@babel/plugin-
|
371
|
-
version "7.
|
372
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-
|
373
|
-
integrity sha512
|
481
|
+
"@babel/plugin-syntax-optional-catch-binding@^7.8.0":
|
482
|
+
version "7.8.3"
|
483
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz#6111a265bcfb020eb9efd0fdfd7d26402b9ed6c1"
|
484
|
+
integrity sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==
|
374
485
|
dependencies:
|
375
|
-
"@babel/helper-
|
376
|
-
"@babel/helper-define-map" "^7.7.0"
|
377
|
-
"@babel/helper-function-name" "^7.7.0"
|
378
|
-
"@babel/helper-optimise-call-expression" "^7.7.0"
|
379
|
-
"@babel/helper-plugin-utils" "^7.0.0"
|
380
|
-
"@babel/helper-replace-supers" "^7.7.0"
|
381
|
-
"@babel/helper-split-export-declaration" "^7.7.0"
|
382
|
-
globals "^11.1.0"
|
486
|
+
"@babel/helper-plugin-utils" "^7.8.0"
|
383
487
|
|
384
|
-
"@babel/plugin-
|
385
|
-
version "7.
|
386
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-
|
387
|
-
integrity sha512-
|
488
|
+
"@babel/plugin-syntax-optional-chaining@^7.8.0":
|
489
|
+
version "7.8.3"
|
490
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz#4f69c2ab95167e0180cd5336613f8c5788f7d48a"
|
491
|
+
integrity sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==
|
388
492
|
dependencies:
|
389
|
-
"@babel/helper-plugin-utils" "^7.
|
493
|
+
"@babel/helper-plugin-utils" "^7.8.0"
|
390
494
|
|
391
|
-
"@babel/plugin-
|
392
|
-
version "7.
|
393
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-
|
394
|
-
integrity sha512-
|
495
|
+
"@babel/plugin-syntax-top-level-await@^7.8.3":
|
496
|
+
version "7.8.3"
|
497
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.8.3.tgz#3acdece695e6b13aaf57fc291d1a800950c71391"
|
498
|
+
integrity sha512-kwj1j9lL/6Wd0hROD3b/OZZ7MSrZLqqn9RAZ5+cYYsflQ9HZBIKCUkr3+uL1MEJ1NePiUbf98jjiMQSv0NMR9g==
|
395
499
|
dependencies:
|
396
|
-
"@babel/helper-plugin-utils" "^7.
|
500
|
+
"@babel/helper-plugin-utils" "^7.8.3"
|
397
501
|
|
398
|
-
"@babel/plugin-transform-
|
399
|
-
version "7.
|
400
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-
|
401
|
-
integrity sha512-
|
502
|
+
"@babel/plugin-transform-arrow-functions@^7.8.3":
|
503
|
+
version "7.8.3"
|
504
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.8.3.tgz#82776c2ed0cd9e1a49956daeb896024c9473b8b6"
|
505
|
+
integrity sha512-0MRF+KC8EqH4dbuITCWwPSzsyO3HIWWlm30v8BbbpOrS1B++isGxPnnuq/IZvOX5J2D/p7DQalQm+/2PnlKGxg==
|
402
506
|
dependencies:
|
403
|
-
"@babel/helper-
|
404
|
-
"@babel/helper-plugin-utils" "^7.0.0"
|
507
|
+
"@babel/helper-plugin-utils" "^7.8.3"
|
405
508
|
|
406
|
-
"@babel/plugin-transform-
|
407
|
-
version "7.
|
408
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-
|
409
|
-
integrity sha512-
|
509
|
+
"@babel/plugin-transform-async-to-generator@^7.8.3":
|
510
|
+
version "7.8.3"
|
511
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.8.3.tgz#4308fad0d9409d71eafb9b1a6ee35f9d64b64086"
|
512
|
+
integrity sha512-imt9tFLD9ogt56Dd5CI/6XgpukMwd/fLGSrix2httihVe7LOGVPhyhMh1BU5kDM7iHD08i8uUtmV2sWaBFlHVQ==
|
410
513
|
dependencies:
|
411
|
-
"@babel/helper-
|
514
|
+
"@babel/helper-module-imports" "^7.8.3"
|
515
|
+
"@babel/helper-plugin-utils" "^7.8.3"
|
516
|
+
"@babel/helper-remap-async-to-generator" "^7.8.3"
|
412
517
|
|
413
|
-
"@babel/plugin-transform-
|
414
|
-
version "7.
|
415
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-
|
416
|
-
integrity sha512-
|
518
|
+
"@babel/plugin-transform-block-scoped-functions@^7.8.3":
|
519
|
+
version "7.8.3"
|
520
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.8.3.tgz#437eec5b799b5852072084b3ae5ef66e8349e8a3"
|
521
|
+
integrity sha512-vo4F2OewqjbB1+yaJ7k2EJFHlTP3jR634Z9Cj9itpqNjuLXvhlVxgnjsHsdRgASR8xYDrx6onw4vW5H6We0Jmg==
|
417
522
|
dependencies:
|
418
|
-
"@babel/helper-
|
419
|
-
"@babel/helper-plugin-utils" "^7.0.0"
|
523
|
+
"@babel/helper-plugin-utils" "^7.8.3"
|
420
524
|
|
421
|
-
"@babel/plugin-transform-
|
422
|
-
version "7.
|
423
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-
|
424
|
-
integrity sha512-
|
525
|
+
"@babel/plugin-transform-block-scoping@^7.8.3":
|
526
|
+
version "7.8.3"
|
527
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.8.3.tgz#97d35dab66857a437c166358b91d09050c868f3a"
|
528
|
+
integrity sha512-pGnYfm7RNRgYRi7bids5bHluENHqJhrV4bCZRwc5GamaWIIs07N4rZECcmJL6ZClwjDz1GbdMZFtPs27hTB06w==
|
425
529
|
dependencies:
|
426
|
-
"@babel/helper-plugin-utils" "^7.
|
530
|
+
"@babel/helper-plugin-utils" "^7.8.3"
|
531
|
+
lodash "^4.17.13"
|
427
532
|
|
428
|
-
"@babel/plugin-transform-
|
429
|
-
version "7.
|
430
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-
|
431
|
-
integrity sha512-
|
533
|
+
"@babel/plugin-transform-classes@^7.8.6":
|
534
|
+
version "7.8.6"
|
535
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.8.6.tgz#77534447a477cbe5995ae4aee3e39fbc8090c46d"
|
536
|
+
integrity sha512-k9r8qRay/R6v5aWZkrEclEhKO6mc1CCQr2dLsVHBmOQiMpN6I2bpjX3vgnldUWeEI1GHVNByULVxZ4BdP4Hmdg==
|
537
|
+
dependencies:
|
538
|
+
"@babel/helper-annotate-as-pure" "^7.8.3"
|
539
|
+
"@babel/helper-define-map" "^7.8.3"
|
540
|
+
"@babel/helper-function-name" "^7.8.3"
|
541
|
+
"@babel/helper-optimise-call-expression" "^7.8.3"
|
542
|
+
"@babel/helper-plugin-utils" "^7.8.3"
|
543
|
+
"@babel/helper-replace-supers" "^7.8.6"
|
544
|
+
"@babel/helper-split-export-declaration" "^7.8.3"
|
545
|
+
globals "^11.1.0"
|
546
|
+
|
547
|
+
"@babel/plugin-transform-computed-properties@^7.8.3":
|
548
|
+
version "7.8.3"
|
549
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.8.3.tgz#96d0d28b7f7ce4eb5b120bb2e0e943343c86f81b"
|
550
|
+
integrity sha512-O5hiIpSyOGdrQZRQ2ccwtTVkgUDBBiCuK//4RJ6UfePllUTCENOzKxfh6ulckXKc0DixTFLCfb2HVkNA7aDpzA==
|
432
551
|
dependencies:
|
433
|
-
"@babel/helper-
|
434
|
-
"@babel/helper-plugin-utils" "^7.0.0"
|
552
|
+
"@babel/helper-plugin-utils" "^7.8.3"
|
435
553
|
|
436
|
-
"@babel/plugin-transform-
|
437
|
-
version "7.
|
438
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-
|
439
|
-
integrity sha512-
|
554
|
+
"@babel/plugin-transform-destructuring@^7.8.3":
|
555
|
+
version "7.8.3"
|
556
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.8.3.tgz#20ddfbd9e4676906b1056ee60af88590cc7aaa0b"
|
557
|
+
integrity sha512-H4X646nCkiEcHZUZaRkhE2XVsoz0J/1x3VVujnn96pSoGCtKPA99ZZA+va+gK+92Zycd6OBKCD8tDb/731bhgQ==
|
440
558
|
dependencies:
|
441
|
-
"@babel/helper-plugin-utils" "^7.
|
559
|
+
"@babel/helper-plugin-utils" "^7.8.3"
|
442
560
|
|
443
|
-
"@babel/plugin-transform-
|
444
|
-
version "7.
|
445
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-
|
446
|
-
integrity sha512-
|
561
|
+
"@babel/plugin-transform-destructuring@^7.8.8":
|
562
|
+
version "7.8.8"
|
563
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.8.8.tgz#fadb2bc8e90ccaf5658de6f8d4d22ff6272a2f4b"
|
564
|
+
integrity sha512-eRJu4Vs2rmttFCdhPUM3bV0Yo/xPSdPw6ML9KHs/bjB4bLA5HXlbvYXPOD5yASodGod+krjYx21xm1QmL8dCJQ==
|
447
565
|
dependencies:
|
448
|
-
"@babel/helper-plugin-utils" "^7.
|
566
|
+
"@babel/helper-plugin-utils" "^7.8.3"
|
449
567
|
|
450
|
-
"@babel/plugin-transform-
|
451
|
-
version "7.
|
452
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-
|
453
|
-
integrity sha512-
|
568
|
+
"@babel/plugin-transform-dotall-regex@^7.8.3":
|
569
|
+
version "7.8.3"
|
570
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.8.3.tgz#c3c6ec5ee6125c6993c5cbca20dc8621a9ea7a6e"
|
571
|
+
integrity sha512-kLs1j9Nn4MQoBYdRXH6AeaXMbEJFaFu/v1nQkvib6QzTj8MZI5OQzqmD83/2jEM1z0DLilra5aWO5YpyC0ALIw==
|
454
572
|
dependencies:
|
455
|
-
"@babel/helper-
|
456
|
-
"@babel/helper-plugin-utils" "^7.
|
457
|
-
babel-plugin-dynamic-import-node "^2.3.0"
|
573
|
+
"@babel/helper-create-regexp-features-plugin" "^7.8.3"
|
574
|
+
"@babel/helper-plugin-utils" "^7.8.3"
|
458
575
|
|
459
|
-
"@babel/plugin-transform-
|
460
|
-
version "7.
|
461
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-
|
462
|
-
integrity sha512-
|
576
|
+
"@babel/plugin-transform-duplicate-keys@^7.8.3":
|
577
|
+
version "7.8.3"
|
578
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.8.3.tgz#8d12df309aa537f272899c565ea1768e286e21f1"
|
579
|
+
integrity sha512-s8dHiBUbcbSgipS4SMFuWGqCvyge5V2ZeAWzR6INTVC3Ltjig/Vw1G2Gztv0vU/hRG9X8IvKvYdoksnUfgXOEQ==
|
463
580
|
dependencies:
|
464
|
-
"@babel/helper-
|
465
|
-
"@babel/helper-plugin-utils" "^7.0.0"
|
466
|
-
"@babel/helper-simple-access" "^7.7.0"
|
467
|
-
babel-plugin-dynamic-import-node "^2.3.0"
|
581
|
+
"@babel/helper-plugin-utils" "^7.8.3"
|
468
582
|
|
469
|
-
"@babel/plugin-transform-
|
470
|
-
version "7.
|
471
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-
|
472
|
-
integrity sha512-
|
583
|
+
"@babel/plugin-transform-exponentiation-operator@^7.8.3":
|
584
|
+
version "7.8.3"
|
585
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.8.3.tgz#581a6d7f56970e06bf51560cd64f5e947b70d7b7"
|
586
|
+
integrity sha512-zwIpuIymb3ACcInbksHaNcR12S++0MDLKkiqXHl3AzpgdKlFNhog+z/K0+TGW+b0w5pgTq4H6IwV/WhxbGYSjQ==
|
473
587
|
dependencies:
|
474
|
-
"@babel/helper-
|
475
|
-
"@babel/helper-plugin-utils" "^7.
|
476
|
-
babel-plugin-dynamic-import-node "^2.3.0"
|
588
|
+
"@babel/helper-builder-binary-assignment-operator-visitor" "^7.8.3"
|
589
|
+
"@babel/helper-plugin-utils" "^7.8.3"
|
477
590
|
|
478
|
-
"@babel/plugin-transform-
|
479
|
-
version "7.
|
480
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-
|
481
|
-
integrity sha512-
|
591
|
+
"@babel/plugin-transform-for-of@^7.8.6":
|
592
|
+
version "7.8.6"
|
593
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.8.6.tgz#a051bd1b402c61af97a27ff51b468321c7c2a085"
|
594
|
+
integrity sha512-M0pw4/1/KI5WAxPsdcUL/w2LJ7o89YHN3yLkzNjg7Yl15GlVGgzHyCU+FMeAxevHGsLVmUqbirlUIKTafPmzdw==
|
482
595
|
dependencies:
|
483
|
-
"@babel/helper-
|
484
|
-
"@babel/helper-plugin-utils" "^7.0.0"
|
596
|
+
"@babel/helper-plugin-utils" "^7.8.3"
|
485
597
|
|
486
|
-
"@babel/plugin-transform-
|
487
|
-
version "7.
|
488
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-
|
489
|
-
integrity sha512
|
598
|
+
"@babel/plugin-transform-function-name@^7.8.3":
|
599
|
+
version "7.8.3"
|
600
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.8.3.tgz#279373cb27322aaad67c2683e776dfc47196ed8b"
|
601
|
+
integrity sha512-rO/OnDS78Eifbjn5Py9v8y0aR+aSYhDhqAwVfsTl0ERuMZyr05L1aFSCJnbv2mmsLkit/4ReeQ9N2BgLnOcPCQ==
|
490
602
|
dependencies:
|
491
|
-
"@babel/helper-
|
603
|
+
"@babel/helper-function-name" "^7.8.3"
|
604
|
+
"@babel/helper-plugin-utils" "^7.8.3"
|
492
605
|
|
493
|
-
"@babel/plugin-transform-
|
494
|
-
version "7.
|
495
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-
|
496
|
-
integrity sha512-
|
606
|
+
"@babel/plugin-transform-literals@^7.8.3":
|
607
|
+
version "7.8.3"
|
608
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.8.3.tgz#aef239823d91994ec7b68e55193525d76dbd5dc1"
|
609
|
+
integrity sha512-3Tqf8JJ/qB7TeldGl+TT55+uQei9JfYaregDcEAyBZ7akutriFrt6C/wLYIer6OYhleVQvH/ntEhjE/xMmy10A==
|
497
610
|
dependencies:
|
498
|
-
"@babel/helper-plugin-utils" "^7.
|
611
|
+
"@babel/helper-plugin-utils" "^7.8.3"
|
499
612
|
|
500
|
-
"@babel/plugin-transform-
|
501
|
-
version "7.
|
502
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-
|
503
|
-
integrity sha512-
|
613
|
+
"@babel/plugin-transform-member-expression-literals@^7.8.3":
|
614
|
+
version "7.8.3"
|
615
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.8.3.tgz#963fed4b620ac7cbf6029c755424029fa3a40410"
|
616
|
+
integrity sha512-3Wk2EXhnw+rP+IDkK6BdtPKsUE5IeZ6QOGrPYvw52NwBStw9V1ZVzxgK6fSKSxqUvH9eQPR3tm3cOq79HlsKYA==
|
504
617
|
dependencies:
|
505
|
-
"@babel/helper-plugin-utils" "^7.
|
506
|
-
"@babel/helper-replace-supers" "^7.5.5"
|
618
|
+
"@babel/helper-plugin-utils" "^7.8.3"
|
507
619
|
|
508
|
-
"@babel/plugin-transform-
|
509
|
-
version "7.
|
510
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-
|
511
|
-
integrity sha512-
|
620
|
+
"@babel/plugin-transform-modules-amd@^7.8.3":
|
621
|
+
version "7.8.3"
|
622
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.8.3.tgz#65606d44616b50225e76f5578f33c568a0b876a5"
|
623
|
+
integrity sha512-MadJiU3rLKclzT5kBH4yxdry96odTUwuqrZM+GllFI/VhxfPz+k9MshJM+MwhfkCdxxclSbSBbUGciBngR+kEQ==
|
512
624
|
dependencies:
|
513
|
-
"@babel/helper-
|
514
|
-
"@babel/helper-
|
515
|
-
|
625
|
+
"@babel/helper-module-transforms" "^7.8.3"
|
626
|
+
"@babel/helper-plugin-utils" "^7.8.3"
|
627
|
+
babel-plugin-dynamic-import-node "^2.3.0"
|
516
628
|
|
517
|
-
"@babel/plugin-transform-
|
518
|
-
version "7.
|
519
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-
|
520
|
-
integrity sha512-
|
629
|
+
"@babel/plugin-transform-modules-commonjs@^7.8.3":
|
630
|
+
version "7.8.3"
|
631
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.8.3.tgz#df251706ec331bd058a34bdd72613915f82928a5"
|
632
|
+
integrity sha512-JpdMEfA15HZ/1gNuB9XEDlZM1h/gF/YOH7zaZzQu2xCFRfwc01NXBMHHSTT6hRjlXJJs5x/bfODM3LiCk94Sxg==
|
521
633
|
dependencies:
|
522
|
-
"@babel/helper-
|
634
|
+
"@babel/helper-module-transforms" "^7.8.3"
|
635
|
+
"@babel/helper-plugin-utils" "^7.8.3"
|
636
|
+
"@babel/helper-simple-access" "^7.8.3"
|
637
|
+
babel-plugin-dynamic-import-node "^2.3.0"
|
523
638
|
|
524
|
-
"@babel/plugin-transform-
|
525
|
-
version "7.
|
526
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-
|
527
|
-
integrity sha512-
|
639
|
+
"@babel/plugin-transform-modules-systemjs@^7.8.3":
|
640
|
+
version "7.8.3"
|
641
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.8.3.tgz#d8bbf222c1dbe3661f440f2f00c16e9bb7d0d420"
|
642
|
+
integrity sha512-8cESMCJjmArMYqa9AO5YuMEkE4ds28tMpZcGZB/jl3n0ZzlsxOAi3mC+SKypTfT8gjMupCnd3YiXCkMjj2jfOg==
|
528
643
|
dependencies:
|
529
|
-
|
644
|
+
"@babel/helper-hoist-variables" "^7.8.3"
|
645
|
+
"@babel/helper-module-transforms" "^7.8.3"
|
646
|
+
"@babel/helper-plugin-utils" "^7.8.3"
|
647
|
+
babel-plugin-dynamic-import-node "^2.3.0"
|
530
648
|
|
531
|
-
"@babel/plugin-transform-
|
532
|
-
version "7.
|
533
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-
|
534
|
-
integrity sha512-
|
649
|
+
"@babel/plugin-transform-modules-umd@^7.8.3":
|
650
|
+
version "7.8.3"
|
651
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.8.3.tgz#592d578ce06c52f5b98b02f913d653ffe972661a"
|
652
|
+
integrity sha512-evhTyWhbwbI3/U6dZAnx/ePoV7H6OUG+OjiJFHmhr9FPn0VShjwC2kdxqIuQ/+1P50TMrneGzMeyMTFOjKSnAw==
|
535
653
|
dependencies:
|
536
|
-
"@babel/helper-
|
654
|
+
"@babel/helper-module-transforms" "^7.8.3"
|
655
|
+
"@babel/helper-plugin-utils" "^7.8.3"
|
537
656
|
|
538
|
-
"@babel/plugin-transform-
|
539
|
-
version "7.
|
540
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-
|
541
|
-
integrity sha512-
|
657
|
+
"@babel/plugin-transform-named-capturing-groups-regex@^7.8.3":
|
658
|
+
version "7.8.3"
|
659
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.8.3.tgz#a2a72bffa202ac0e2d0506afd0939c5ecbc48c6c"
|
660
|
+
integrity sha512-f+tF/8UVPU86TrCb06JoPWIdDpTNSGGcAtaD9mLP0aYGA0OS0j7j7DHJR0GTFrUZPUU6loZhbsVZgTh0N+Qdnw==
|
542
661
|
dependencies:
|
543
|
-
"@babel/helper-
|
544
|
-
"@babel/helper-plugin-utils" "^7.0.0"
|
545
|
-
resolve "^1.8.1"
|
546
|
-
semver "^5.5.1"
|
662
|
+
"@babel/helper-create-regexp-features-plugin" "^7.8.3"
|
547
663
|
|
548
|
-
"@babel/plugin-transform-
|
549
|
-
version "7.
|
550
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-
|
551
|
-
integrity sha512-
|
664
|
+
"@babel/plugin-transform-new-target@^7.8.3":
|
665
|
+
version "7.8.3"
|
666
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.8.3.tgz#60cc2ae66d85c95ab540eb34babb6434d4c70c43"
|
667
|
+
integrity sha512-QuSGysibQpyxexRyui2vca+Cmbljo8bcRckgzYV4kRIsHpVeyeC3JDO63pY+xFZ6bWOBn7pfKZTqV4o/ix9sFw==
|
552
668
|
dependencies:
|
553
|
-
"@babel/helper-plugin-utils" "^7.
|
669
|
+
"@babel/helper-plugin-utils" "^7.8.3"
|
554
670
|
|
555
|
-
"@babel/plugin-transform-
|
556
|
-
version "7.
|
557
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-
|
558
|
-
integrity sha512-
|
671
|
+
"@babel/plugin-transform-object-super@^7.8.3":
|
672
|
+
version "7.8.3"
|
673
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.8.3.tgz#ebb6a1e7a86ffa96858bd6ac0102d65944261725"
|
674
|
+
integrity sha512-57FXk+gItG/GejofIyLIgBKTas4+pEU47IXKDBWFTxdPd7F80H8zybyAY7UoblVfBhBGs2EKM+bJUu2+iUYPDQ==
|
559
675
|
dependencies:
|
560
|
-
"@babel/helper-plugin-utils" "^7.
|
676
|
+
"@babel/helper-plugin-utils" "^7.8.3"
|
677
|
+
"@babel/helper-replace-supers" "^7.8.3"
|
561
678
|
|
562
|
-
"@babel/plugin-transform-
|
563
|
-
version "7.
|
564
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-
|
565
|
-
integrity sha512-
|
679
|
+
"@babel/plugin-transform-parameters@^7.8.7":
|
680
|
+
version "7.8.8"
|
681
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.8.8.tgz#0381de466c85d5404565243660c4496459525daf"
|
682
|
+
integrity sha512-hC4Ld/Ulpf1psQciWWwdnUspQoQco2bMzSrwU6TmzRlvoYQe4rQFy9vnCZDTlVeCQj0JPfL+1RX0V8hCJvkgBA==
|
566
683
|
dependencies:
|
567
|
-
"@babel/helper-
|
568
|
-
"@babel/helper-
|
684
|
+
"@babel/helper-call-delegate" "^7.8.7"
|
685
|
+
"@babel/helper-get-function-arity" "^7.8.3"
|
686
|
+
"@babel/helper-plugin-utils" "^7.8.3"
|
569
687
|
|
570
|
-
"@babel/plugin-transform-
|
571
|
-
version "7.
|
572
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-
|
573
|
-
integrity sha512-
|
688
|
+
"@babel/plugin-transform-property-literals@^7.8.3":
|
689
|
+
version "7.8.3"
|
690
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.8.3.tgz#33194300d8539c1ed28c62ad5087ba3807b98263"
|
691
|
+
integrity sha512-uGiiXAZMqEoQhRWMK17VospMZh5sXWg+dlh2soffpkAl96KAm+WZuJfa6lcELotSRmooLqg0MWdH6UUq85nmmg==
|
574
692
|
dependencies:
|
575
|
-
"@babel/helper-
|
576
|
-
"@babel/helper-plugin-utils" "^7.0.0"
|
693
|
+
"@babel/helper-plugin-utils" "^7.8.3"
|
577
694
|
|
578
|
-
"@babel/plugin-transform-
|
579
|
-
version "7.
|
580
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-
|
581
|
-
integrity sha512-
|
695
|
+
"@babel/plugin-transform-regenerator@^7.8.7":
|
696
|
+
version "7.8.7"
|
697
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.8.7.tgz#5e46a0dca2bee1ad8285eb0527e6abc9c37672f8"
|
698
|
+
integrity sha512-TIg+gAl4Z0a3WmD3mbYSk+J9ZUH6n/Yc57rtKRnlA/7rcCvpekHXe0CMZHP1gYp7/KLe9GHTuIba0vXmls6drA==
|
582
699
|
dependencies:
|
583
|
-
|
700
|
+
regenerator-transform "^0.14.2"
|
584
701
|
|
585
|
-
"@babel/plugin-transform-
|
586
|
-
version "7.
|
587
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-
|
588
|
-
integrity sha512-
|
702
|
+
"@babel/plugin-transform-reserved-words@^7.8.3":
|
703
|
+
version "7.8.3"
|
704
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.8.3.tgz#9a0635ac4e665d29b162837dd3cc50745dfdf1f5"
|
705
|
+
integrity sha512-mwMxcycN3omKFDjDQUl+8zyMsBfjRFr0Zn/64I41pmjv4NJuqcYlEtezwYtw9TFd9WR1vN5kiM+O0gMZzO6L0A==
|
589
706
|
dependencies:
|
590
|
-
"@babel/helper-
|
591
|
-
"@babel/helper-plugin-utils" "^7.0.0"
|
707
|
+
"@babel/helper-plugin-utils" "^7.8.3"
|
592
708
|
|
593
|
-
"@babel/
|
594
|
-
version "7.
|
595
|
-
resolved "https://registry.yarnpkg.com/@babel/
|
596
|
-
integrity sha512-/
|
709
|
+
"@babel/plugin-transform-runtime@^7.8.3":
|
710
|
+
version "7.8.3"
|
711
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.8.3.tgz#c0153bc0a5375ebc1f1591cb7eea223adea9f169"
|
712
|
+
integrity sha512-/vqUt5Yh+cgPZXXjmaG9NT8aVfThKk7G4OqkVhrXqwsC5soMn/qTCxs36rZ2QFhpfTJcjw4SNDIZ4RUb8OL4jQ==
|
597
713
|
dependencies:
|
598
|
-
"@babel/helper-module-imports" "^7.
|
599
|
-
"@babel/helper-plugin-utils" "^7.
|
600
|
-
|
601
|
-
|
602
|
-
|
603
|
-
|
604
|
-
|
605
|
-
|
606
|
-
|
607
|
-
|
608
|
-
"@babel/plugin-
|
609
|
-
|
610
|
-
|
611
|
-
|
612
|
-
|
613
|
-
|
614
|
-
|
615
|
-
"@babel/plugin-
|
616
|
-
|
617
|
-
|
618
|
-
|
619
|
-
|
620
|
-
|
621
|
-
|
622
|
-
"@babel/plugin-
|
623
|
-
"@babel/
|
624
|
-
|
625
|
-
|
626
|
-
|
627
|
-
|
628
|
-
|
629
|
-
|
630
|
-
"@babel/
|
631
|
-
"@babel/plugin-
|
632
|
-
|
633
|
-
|
634
|
-
|
635
|
-
|
636
|
-
|
637
|
-
|
638
|
-
"@babel/plugin-
|
639
|
-
|
640
|
-
|
641
|
-
|
642
|
-
|
643
|
-
|
644
|
-
|
645
|
-
|
714
|
+
"@babel/helper-module-imports" "^7.8.3"
|
715
|
+
"@babel/helper-plugin-utils" "^7.8.3"
|
716
|
+
resolve "^1.8.1"
|
717
|
+
semver "^5.5.1"
|
718
|
+
|
719
|
+
"@babel/plugin-transform-shorthand-properties@^7.8.3":
|
720
|
+
version "7.8.3"
|
721
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.8.3.tgz#28545216e023a832d4d3a1185ed492bcfeac08c8"
|
722
|
+
integrity sha512-I9DI6Odg0JJwxCHzbzW08ggMdCezoWcuQRz3ptdudgwaHxTjxw5HgdFJmZIkIMlRymL6YiZcped4TTCB0JcC8w==
|
723
|
+
dependencies:
|
724
|
+
"@babel/helper-plugin-utils" "^7.8.3"
|
725
|
+
|
726
|
+
"@babel/plugin-transform-spread@^7.8.3":
|
727
|
+
version "7.8.3"
|
728
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.8.3.tgz#9c8ffe8170fdfb88b114ecb920b82fb6e95fe5e8"
|
729
|
+
integrity sha512-CkuTU9mbmAoFOI1tklFWYYbzX5qCIZVXPVy0jpXgGwkplCndQAa58s2jr66fTeQnA64bDox0HL4U56CFYoyC7g==
|
730
|
+
dependencies:
|
731
|
+
"@babel/helper-plugin-utils" "^7.8.3"
|
732
|
+
|
733
|
+
"@babel/plugin-transform-sticky-regex@^7.8.3":
|
734
|
+
version "7.8.3"
|
735
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.8.3.tgz#be7a1290f81dae767475452199e1f76d6175b100"
|
736
|
+
integrity sha512-9Spq0vGCD5Bb4Z/ZXXSK5wbbLFMG085qd2vhL1JYu1WcQ5bXqZBAYRzU1d+p79GcHs2szYv5pVQCX13QgldaWw==
|
737
|
+
dependencies:
|
738
|
+
"@babel/helper-plugin-utils" "^7.8.3"
|
739
|
+
"@babel/helper-regex" "^7.8.3"
|
740
|
+
|
741
|
+
"@babel/plugin-transform-template-literals@^7.8.3":
|
742
|
+
version "7.8.3"
|
743
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.8.3.tgz#7bfa4732b455ea6a43130adc0ba767ec0e402a80"
|
744
|
+
integrity sha512-820QBtykIQOLFT8NZOcTRJ1UNuztIELe4p9DCgvj4NK+PwluSJ49we7s9FB1HIGNIYT7wFUJ0ar2QpCDj0escQ==
|
745
|
+
dependencies:
|
746
|
+
"@babel/helper-annotate-as-pure" "^7.8.3"
|
747
|
+
"@babel/helper-plugin-utils" "^7.8.3"
|
748
|
+
|
749
|
+
"@babel/plugin-transform-typeof-symbol@^7.8.4":
|
750
|
+
version "7.8.4"
|
751
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.8.4.tgz#ede4062315ce0aaf8a657a920858f1a2f35fc412"
|
752
|
+
integrity sha512-2QKyfjGdvuNfHsb7qnBBlKclbD4CfshH2KvDabiijLMGXPHJXGxtDzwIF7bQP+T0ysw8fYTtxPafgfs/c1Lrqg==
|
753
|
+
dependencies:
|
754
|
+
"@babel/helper-plugin-utils" "^7.8.3"
|
755
|
+
|
756
|
+
"@babel/plugin-transform-unicode-regex@^7.8.3":
|
757
|
+
version "7.8.3"
|
758
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.8.3.tgz#0cef36e3ba73e5c57273effb182f46b91a1ecaad"
|
759
|
+
integrity sha512-+ufgJjYdmWfSQ+6NS9VGUR2ns8cjJjYbrbi11mZBTaWm+Fui/ncTLFF28Ei1okavY+xkojGr1eJxNsWYeA5aZw==
|
760
|
+
dependencies:
|
761
|
+
"@babel/helper-create-regexp-features-plugin" "^7.8.3"
|
762
|
+
"@babel/helper-plugin-utils" "^7.8.3"
|
763
|
+
|
764
|
+
"@babel/preset-env@^7.8.7":
|
765
|
+
version "7.8.7"
|
766
|
+
resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.8.7.tgz#1fc7d89c7f75d2d70c2b6768de6c2e049b3cb9db"
|
767
|
+
integrity sha512-BYftCVOdAYJk5ASsznKAUl53EMhfBbr8CJ1X+AJLfGPscQkwJFiaV/Wn9DPH/7fzm2v6iRYJKYHSqyynTGw0nw==
|
768
|
+
dependencies:
|
769
|
+
"@babel/compat-data" "^7.8.6"
|
770
|
+
"@babel/helper-compilation-targets" "^7.8.7"
|
771
|
+
"@babel/helper-module-imports" "^7.8.3"
|
772
|
+
"@babel/helper-plugin-utils" "^7.8.3"
|
773
|
+
"@babel/plugin-proposal-async-generator-functions" "^7.8.3"
|
774
|
+
"@babel/plugin-proposal-dynamic-import" "^7.8.3"
|
775
|
+
"@babel/plugin-proposal-json-strings" "^7.8.3"
|
776
|
+
"@babel/plugin-proposal-nullish-coalescing-operator" "^7.8.3"
|
777
|
+
"@babel/plugin-proposal-object-rest-spread" "^7.8.3"
|
778
|
+
"@babel/plugin-proposal-optional-catch-binding" "^7.8.3"
|
779
|
+
"@babel/plugin-proposal-optional-chaining" "^7.8.3"
|
780
|
+
"@babel/plugin-proposal-unicode-property-regex" "^7.8.3"
|
781
|
+
"@babel/plugin-syntax-async-generators" "^7.8.0"
|
782
|
+
"@babel/plugin-syntax-dynamic-import" "^7.8.0"
|
783
|
+
"@babel/plugin-syntax-json-strings" "^7.8.0"
|
784
|
+
"@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.0"
|
785
|
+
"@babel/plugin-syntax-object-rest-spread" "^7.8.0"
|
786
|
+
"@babel/plugin-syntax-optional-catch-binding" "^7.8.0"
|
787
|
+
"@babel/plugin-syntax-optional-chaining" "^7.8.0"
|
788
|
+
"@babel/plugin-syntax-top-level-await" "^7.8.3"
|
789
|
+
"@babel/plugin-transform-arrow-functions" "^7.8.3"
|
790
|
+
"@babel/plugin-transform-async-to-generator" "^7.8.3"
|
791
|
+
"@babel/plugin-transform-block-scoped-functions" "^7.8.3"
|
792
|
+
"@babel/plugin-transform-block-scoping" "^7.8.3"
|
793
|
+
"@babel/plugin-transform-classes" "^7.8.6"
|
794
|
+
"@babel/plugin-transform-computed-properties" "^7.8.3"
|
795
|
+
"@babel/plugin-transform-destructuring" "^7.8.3"
|
796
|
+
"@babel/plugin-transform-dotall-regex" "^7.8.3"
|
797
|
+
"@babel/plugin-transform-duplicate-keys" "^7.8.3"
|
798
|
+
"@babel/plugin-transform-exponentiation-operator" "^7.8.3"
|
799
|
+
"@babel/plugin-transform-for-of" "^7.8.6"
|
800
|
+
"@babel/plugin-transform-function-name" "^7.8.3"
|
801
|
+
"@babel/plugin-transform-literals" "^7.8.3"
|
802
|
+
"@babel/plugin-transform-member-expression-literals" "^7.8.3"
|
803
|
+
"@babel/plugin-transform-modules-amd" "^7.8.3"
|
804
|
+
"@babel/plugin-transform-modules-commonjs" "^7.8.3"
|
805
|
+
"@babel/plugin-transform-modules-systemjs" "^7.8.3"
|
806
|
+
"@babel/plugin-transform-modules-umd" "^7.8.3"
|
807
|
+
"@babel/plugin-transform-named-capturing-groups-regex" "^7.8.3"
|
808
|
+
"@babel/plugin-transform-new-target" "^7.8.3"
|
809
|
+
"@babel/plugin-transform-object-super" "^7.8.3"
|
810
|
+
"@babel/plugin-transform-parameters" "^7.8.7"
|
811
|
+
"@babel/plugin-transform-property-literals" "^7.8.3"
|
812
|
+
"@babel/plugin-transform-regenerator" "^7.8.7"
|
813
|
+
"@babel/plugin-transform-reserved-words" "^7.8.3"
|
814
|
+
"@babel/plugin-transform-shorthand-properties" "^7.8.3"
|
815
|
+
"@babel/plugin-transform-spread" "^7.8.3"
|
816
|
+
"@babel/plugin-transform-sticky-regex" "^7.8.3"
|
817
|
+
"@babel/plugin-transform-template-literals" "^7.8.3"
|
818
|
+
"@babel/plugin-transform-typeof-symbol" "^7.8.4"
|
819
|
+
"@babel/plugin-transform-unicode-regex" "^7.8.3"
|
820
|
+
"@babel/types" "^7.8.7"
|
821
|
+
browserslist "^4.8.5"
|
822
|
+
core-js-compat "^3.6.2"
|
646
823
|
invariant "^2.2.2"
|
647
|
-
|
824
|
+
levenary "^1.1.1"
|
648
825
|
semver "^5.5.0"
|
649
826
|
|
650
|
-
"@babel/runtime@^7.4.
|
827
|
+
"@babel/runtime@^7.4.5", "@babel/runtime@^7.7.2":
|
651
828
|
version "7.7.2"
|
652
829
|
resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.7.2.tgz#111a78002a5c25fc8e3361bedc9529c696b85a6a"
|
653
830
|
integrity sha512-JONRbXbTXc9WQE2mAZd1p0Z3DZ/6vaQIkgYMSTP3KjRCyd7rCZCcfhCyX+YjwcKxcZ82UrxbRD358bpExNgrjw==
|
654
831
|
dependencies:
|
655
832
|
regenerator-runtime "^0.13.2"
|
656
833
|
|
834
|
+
"@babel/runtime@^7.6.3":
|
835
|
+
version "7.7.7"
|
836
|
+
resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.7.7.tgz#194769ca8d6d7790ec23605af9ee3e42a0aa79cf"
|
837
|
+
integrity sha512-uCnC2JEVAu8AKB5do1WRIsvrdJ0flYx/A/9f/6chdacnEZ7LmavjdsDXr5ksYBegxtuTPR5Va9/+13QF/kFkCA==
|
838
|
+
dependencies:
|
839
|
+
regenerator-runtime "^0.13.2"
|
840
|
+
|
841
|
+
"@babel/runtime@^7.8.4":
|
842
|
+
version "7.8.4"
|
843
|
+
resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.8.4.tgz#d79f5a2040f7caa24d53e563aad49cbc05581308"
|
844
|
+
integrity sha512-neAp3zt80trRVBI1x0azq6c57aNBqYZH8KhMm3TaB7wEI5Q4A2SHfBHE8w9gOhI/lrqxtEbXZgQIrHP+wvSGwQ==
|
845
|
+
dependencies:
|
846
|
+
regenerator-runtime "^0.13.2"
|
847
|
+
|
848
|
+
"@babel/runtime@^7.8.7":
|
849
|
+
version "7.8.7"
|
850
|
+
resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.8.7.tgz#8fefce9802db54881ba59f90bb28719b4996324d"
|
851
|
+
integrity sha512-+AATMUFppJDw6aiR5NVPHqIQBlV/Pj8wY/EZH+lmvRdUo9xBaz/rF3alAwFJQavvKfeOlPE7oaaDHVbcySbCsg==
|
852
|
+
dependencies:
|
853
|
+
regenerator-runtime "^0.13.4"
|
854
|
+
|
657
855
|
"@babel/template@^7.4.0", "@babel/template@^7.7.0":
|
658
856
|
version "7.7.0"
|
659
857
|
resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.7.0.tgz#4fadc1b8e734d97f56de39c77de76f2562e597d0"
|
@@ -663,6 +861,15 @@
|
|
663
861
|
"@babel/parser" "^7.7.0"
|
664
862
|
"@babel/types" "^7.7.0"
|
665
863
|
|
864
|
+
"@babel/template@^7.8.3", "@babel/template@^7.8.6":
|
865
|
+
version "7.8.6"
|
866
|
+
resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.8.6.tgz#86b22af15f828dfb086474f964dcc3e39c43ce2b"
|
867
|
+
integrity sha512-zbMsPMy/v0PWFZEhQJ66bqjhH+z0JgMoBWuikXybgG3Gkd/3t5oQ1Rw2WQhnSrsOmsKXnZOx15tkC4qON/+JPg==
|
868
|
+
dependencies:
|
869
|
+
"@babel/code-frame" "^7.8.3"
|
870
|
+
"@babel/parser" "^7.8.6"
|
871
|
+
"@babel/types" "^7.8.6"
|
872
|
+
|
666
873
|
"@babel/traverse@^7.1.0", "@babel/traverse@^7.4.3", "@babel/traverse@^7.7.0", "@babel/traverse@^7.7.2":
|
667
874
|
version "7.7.2"
|
668
875
|
resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.7.2.tgz#ef0a65e07a2f3c550967366b3d9b62a2dcbeae09"
|
@@ -678,7 +885,22 @@
|
|
678
885
|
globals "^11.1.0"
|
679
886
|
lodash "^4.17.13"
|
680
887
|
|
681
|
-
"@babel/
|
888
|
+
"@babel/traverse@^7.8.3", "@babel/traverse@^7.8.4", "@babel/traverse@^7.8.6":
|
889
|
+
version "7.8.6"
|
890
|
+
resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.8.6.tgz#acfe0c64e1cd991b3e32eae813a6eb564954b5ff"
|
891
|
+
integrity sha512-2B8l0db/DPi8iinITKuo7cbPznLCEk0kCxDoB9/N6gGNg/gxOXiR/IcymAFPiBwk5w6TtQ27w4wpElgp9btR9A==
|
892
|
+
dependencies:
|
893
|
+
"@babel/code-frame" "^7.8.3"
|
894
|
+
"@babel/generator" "^7.8.6"
|
895
|
+
"@babel/helper-function-name" "^7.8.3"
|
896
|
+
"@babel/helper-split-export-declaration" "^7.8.3"
|
897
|
+
"@babel/parser" "^7.8.6"
|
898
|
+
"@babel/types" "^7.8.6"
|
899
|
+
debug "^4.1.0"
|
900
|
+
globals "^11.1.0"
|
901
|
+
lodash "^4.17.13"
|
902
|
+
|
903
|
+
"@babel/types@^7.0.0", "@babel/types@^7.3.0", "@babel/types@^7.4.0", "@babel/types@^7.7.0", "@babel/types@^7.7.2":
|
682
904
|
version "7.7.2"
|
683
905
|
resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.7.2.tgz#550b82e5571dcd174af576e23f0adba7ffc683f7"
|
684
906
|
integrity sha512-YTf6PXoh3+eZgRCBzzP25Bugd2ngmpQVrk7kXX0i5N9BO7TFBtIgZYs7WtxtOGs8e6A4ZI7ECkbBCEHeXocvOA==
|
@@ -687,6 +909,24 @@
|
|
687
909
|
lodash "^4.17.13"
|
688
910
|
to-fast-properties "^2.0.0"
|
689
911
|
|
912
|
+
"@babel/types@^7.8.3", "@babel/types@^7.8.6":
|
913
|
+
version "7.8.6"
|
914
|
+
resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.8.6.tgz#629ecc33c2557fcde7126e58053127afdb3e6d01"
|
915
|
+
integrity sha512-wqz7pgWMIrht3gquyEFPVXeXCti72Rm8ep9b5tQKz9Yg9LzJA3HxosF1SB3Kc81KD1A3XBkkVYtJvCKS2Z/QrA==
|
916
|
+
dependencies:
|
917
|
+
esutils "^2.0.2"
|
918
|
+
lodash "^4.17.13"
|
919
|
+
to-fast-properties "^2.0.0"
|
920
|
+
|
921
|
+
"@babel/types@^7.8.7":
|
922
|
+
version "7.8.7"
|
923
|
+
resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.8.7.tgz#1fc9729e1acbb2337d5b6977a63979b4819f5d1d"
|
924
|
+
integrity sha512-k2TreEHxFA4CjGkL+GYjRyx35W0Mr7DP5+9q6WMkyKXB+904bYmG40syjMFV0oLlhhFCwWl0vA0DyzTDkwAiJw==
|
925
|
+
dependencies:
|
926
|
+
esutils "^2.0.2"
|
927
|
+
lodash "^4.17.13"
|
928
|
+
to-fast-properties "^2.0.0"
|
929
|
+
|
690
930
|
"@cnakazawa/watch@^1.0.3":
|
691
931
|
version "1.0.3"
|
692
932
|
resolved "https://registry.yarnpkg.com/@cnakazawa/watch/-/watch-1.0.3.tgz#099139eaec7ebf07a27c1786a3ff64f39464d2ef"
|
@@ -848,13 +1088,6 @@
|
|
848
1088
|
"@types/istanbul-reports" "^1.1.1"
|
849
1089
|
"@types/yargs" "^13.0.0"
|
850
1090
|
|
851
|
-
"@npmcli/move-file@^1.0.1":
|
852
|
-
version "1.0.1"
|
853
|
-
resolved "https://registry.yarnpkg.com/@npmcli/move-file/-/move-file-1.0.1.tgz#de103070dac0f48ce49cf6693c23af59c0f70464"
|
854
|
-
integrity sha512-Uv6h1sT+0DrblvIrolFtbvM1FgWm+/sy4B3pvLp67Zys+thcukzS5ekn7HsZFGpWP4Q3fYJCljbWQE/XivMRLw==
|
855
|
-
dependencies:
|
856
|
-
mkdirp "^1.0.4"
|
857
|
-
|
858
1091
|
"@types/babel__core@^7.1.0":
|
859
1092
|
version "7.1.3"
|
860
1093
|
resolved "https://registry.yarnpkg.com/@types/babel__core/-/babel__core-7.1.3.tgz#e441ea7df63cd080dfcd02ab199e6d16a735fc30"
|
@@ -908,10 +1141,10 @@
|
|
908
1141
|
"@types/istanbul-lib-coverage" "*"
|
909
1142
|
"@types/istanbul-lib-report" "*"
|
910
1143
|
|
911
|
-
"@types/json
|
912
|
-
version "
|
913
|
-
resolved "https://registry.yarnpkg.com/@types/json-
|
914
|
-
integrity sha512
|
1144
|
+
"@types/parse-json@^4.0.0":
|
1145
|
+
version "4.0.0"
|
1146
|
+
resolved "https://registry.yarnpkg.com/@types/parse-json/-/parse-json-4.0.0.tgz#2f8bb441434d163b35fb8ffdccd7138927ffb8c0"
|
1147
|
+
integrity sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==
|
915
1148
|
|
916
1149
|
"@types/q@^1.5.1":
|
917
1150
|
version "1.5.2"
|
@@ -1120,9 +1353,9 @@ acorn-walk@^6.0.1:
|
|
1120
1353
|
integrity sha512-7evsyfH1cLOCdAzZAd43Cic04yKydNx0cF+7tiA19p1XnLLPU4dpCQOqpjqwokFe//vS0QqfqqjCS2JkiIs0cA==
|
1121
1354
|
|
1122
1355
|
acorn@^5.5.3:
|
1123
|
-
version "5.7.
|
1124
|
-
resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.7.
|
1125
|
-
integrity sha512-
|
1356
|
+
version "5.7.4"
|
1357
|
+
resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.7.4.tgz#3e8d8a9947d0599a1796d10225d7432f4a4acf5e"
|
1358
|
+
integrity sha512-1D++VG7BhrtvQpNbBzovKNc1FLGGEE/oGe7b9xJm/RFHMBeUaUGpluV9RLjZa47YFdPcDAenEYuq9pQPcMdLJg==
|
1126
1359
|
|
1127
1360
|
acorn@^6.0.1, acorn@^6.2.1:
|
1128
1361
|
version "6.3.0"
|
@@ -1162,16 +1395,6 @@ ajv@^6.1.0, ajv@^6.10.0, ajv@^6.10.2, ajv@^6.5.5:
|
|
1162
1395
|
json-schema-traverse "^0.4.1"
|
1163
1396
|
uri-js "^4.2.2"
|
1164
1397
|
|
1165
|
-
ajv@^6.12.2:
|
1166
|
-
version "6.12.3"
|
1167
|
-
resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.3.tgz#18c5af38a111ddeb4f2697bd78d68abc1cabd706"
|
1168
|
-
integrity sha512-4K0cK3L1hsqk9xIb2z9vs/XU+PGJZ9PNpJRDS9YLzmNdX6jmVPfamLvTJr0aDAusnHyCHO6MjzlkAsgtqp9teA==
|
1169
|
-
dependencies:
|
1170
|
-
fast-deep-equal "^3.1.1"
|
1171
|
-
fast-json-stable-stringify "^2.0.0"
|
1172
|
-
json-schema-traverse "^0.4.1"
|
1173
|
-
uri-js "^4.2.2"
|
1174
|
-
|
1175
1398
|
alphanum-sort@^1.0.0:
|
1176
1399
|
version "1.0.2"
|
1177
1400
|
resolved "https://registry.yarnpkg.com/alphanum-sort/-/alphanum-sort-1.0.2.tgz#97a1119649b211ad33691d9f9f486a8ec9fbe0a3"
|
@@ -1295,6 +1518,14 @@ array-unique@^0.3.2:
|
|
1295
1518
|
resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.3.2.tgz#a894b75d4bc4f6cd679ef3244a9fd8f46ae2d428"
|
1296
1519
|
integrity sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg=
|
1297
1520
|
|
1521
|
+
array.prototype.flat@^1.2.1:
|
1522
|
+
version "1.2.3"
|
1523
|
+
resolved "https://registry.yarnpkg.com/array.prototype.flat/-/array.prototype.flat-1.2.3.tgz#0de82b426b0318dbfdb940089e38b043d37f6c7b"
|
1524
|
+
integrity sha512-gBlRZV0VSmfPIeWfuuy56XZMvbVfbEUnOXUvt3F/eUUUSyzlgLxhEX4YAEpxNAogRGehPSnfXyPtYyKAhkzQhQ==
|
1525
|
+
dependencies:
|
1526
|
+
define-properties "^1.1.3"
|
1527
|
+
es-abstract "^1.17.0-next.1"
|
1528
|
+
|
1298
1529
|
asn1.js@^4.0.0:
|
1299
1530
|
version "4.10.1"
|
1300
1531
|
resolved "https://registry.yarnpkg.com/asn1.js/-/asn1.js-4.10.1.tgz#b9c2bf5805f1e64aadeed6df3a2bfafb5a73f5a0"
|
@@ -1441,14 +1672,14 @@ babel-plugin-jest-hoist@^24.9.0:
|
|
1441
1672
|
dependencies:
|
1442
1673
|
"@types/babel__traverse" "^7.0.6"
|
1443
1674
|
|
1444
|
-
babel-plugin-macros@^2.
|
1445
|
-
version "2.
|
1446
|
-
resolved "https://registry.yarnpkg.com/babel-plugin-macros/-/babel-plugin-macros-2.
|
1447
|
-
integrity sha512-
|
1675
|
+
babel-plugin-macros@^2.8.0:
|
1676
|
+
version "2.8.0"
|
1677
|
+
resolved "https://registry.yarnpkg.com/babel-plugin-macros/-/babel-plugin-macros-2.8.0.tgz#0f958a7cc6556b1e65344465d99111a1e5e10138"
|
1678
|
+
integrity sha512-SEP5kJpfGYqYKpBrj5XU3ahw5p5GOHJ0U5ssOSQ/WBVdwkD2Dzlce95exQTs3jOVWPPKLBN2rlEWkCK7dSmLvg==
|
1448
1679
|
dependencies:
|
1449
|
-
"@babel/runtime" "^7.
|
1450
|
-
cosmiconfig "^
|
1451
|
-
resolve "^1.
|
1680
|
+
"@babel/runtime" "^7.7.2"
|
1681
|
+
cosmiconfig "^6.0.0"
|
1682
|
+
resolve "^1.12.0"
|
1452
1683
|
|
1453
1684
|
babel-preset-jest@^24.9.0:
|
1454
1685
|
version "24.9.0"
|
@@ -1506,9 +1737,9 @@ block-stream@*:
|
|
1506
1737
|
inherits "~2.0.0"
|
1507
1738
|
|
1508
1739
|
bluebird@^3.5.5:
|
1509
|
-
version "3.7.
|
1510
|
-
resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.7.
|
1511
|
-
integrity sha512-
|
1740
|
+
version "3.7.2"
|
1741
|
+
resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.7.2.tgz#9f229c15be272454ffa973ace0dbee79a1b0c36f"
|
1742
|
+
integrity sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==
|
1512
1743
|
|
1513
1744
|
bn.js@^4.0.0, bn.js@^4.1.0, bn.js@^4.1.1, bn.js@^4.4.0:
|
1514
1745
|
version "4.11.8"
|
@@ -1620,7 +1851,7 @@ browserify-zlib@^0.2.0:
|
|
1620
1851
|
dependencies:
|
1621
1852
|
pako "~1.0.5"
|
1622
1853
|
|
1623
|
-
browserslist@^4.0.0, browserslist@^4.6.
|
1854
|
+
browserslist@^4.0.0, browserslist@^4.6.4, browserslist@^4.7.2:
|
1624
1855
|
version "4.7.2"
|
1625
1856
|
resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.7.2.tgz#1bb984531a476b5d389cedecb195b2cd69fb1348"
|
1626
1857
|
integrity sha512-uZavT/gZXJd2UTi9Ov7/Z340WOSQ3+m1iBVRUknf+okKxonL9P83S3ctiBDtuRmRu8PiCHjqyueqQ9HYlJhxiw==
|
@@ -1629,6 +1860,34 @@ browserslist@^4.0.0, browserslist@^4.6.0, browserslist@^4.6.4, browserslist@^4.7
|
|
1629
1860
|
electron-to-chromium "^1.3.295"
|
1630
1861
|
node-releases "^1.1.38"
|
1631
1862
|
|
1863
|
+
browserslist@^4.8.3:
|
1864
|
+
version "4.8.3"
|
1865
|
+
resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.8.3.tgz#65802fcd77177c878e015f0e3189f2c4f627ba44"
|
1866
|
+
integrity sha512-iU43cMMknxG1ClEZ2MDKeonKE1CCrFVkQK2AqO2YWFmvIrx4JWrvQ4w4hQez6EpVI8rHTtqh/ruHHDHSOKxvUg==
|
1867
|
+
dependencies:
|
1868
|
+
caniuse-lite "^1.0.30001017"
|
1869
|
+
electron-to-chromium "^1.3.322"
|
1870
|
+
node-releases "^1.1.44"
|
1871
|
+
|
1872
|
+
browserslist@^4.8.5:
|
1873
|
+
version "4.9.1"
|
1874
|
+
resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.9.1.tgz#01ffb9ca31a1aef7678128fc6a2253316aa7287c"
|
1875
|
+
integrity sha512-Q0DnKq20End3raFulq6Vfp1ecB9fh8yUNV55s8sekaDDeqBaCtWlRHCUdaWyUeSSBJM7IbM6HcsyaeYqgeDhnw==
|
1876
|
+
dependencies:
|
1877
|
+
caniuse-lite "^1.0.30001030"
|
1878
|
+
electron-to-chromium "^1.3.363"
|
1879
|
+
node-releases "^1.1.50"
|
1880
|
+
|
1881
|
+
browserslist@^4.9.1:
|
1882
|
+
version "4.10.0"
|
1883
|
+
resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.10.0.tgz#f179737913eaf0d2b98e4926ac1ca6a15cbcc6a9"
|
1884
|
+
integrity sha512-TpfK0TDgv71dzuTsEAlQiHeWQ/tiPqgNZVdv046fvNtBZrjbv2O3TsWCDU0AWGJJKCF/KsjNdLzR9hXOsh/CfA==
|
1885
|
+
dependencies:
|
1886
|
+
caniuse-lite "^1.0.30001035"
|
1887
|
+
electron-to-chromium "^1.3.378"
|
1888
|
+
node-releases "^1.1.52"
|
1889
|
+
pkg-up "^3.1.0"
|
1890
|
+
|
1632
1891
|
bser@^2.0.0:
|
1633
1892
|
version "2.1.1"
|
1634
1893
|
resolved "https://registry.yarnpkg.com/bser/-/bser-2.1.1.tgz#e6787da20ece9d07998533cfd9de6f5c38f4bc05"
|
@@ -1705,29 +1964,6 @@ cacache@^13.0.1:
|
|
1705
1964
|
ssri "^7.0.0"
|
1706
1965
|
unique-filename "^1.1.1"
|
1707
1966
|
|
1708
|
-
cacache@^15.0.5:
|
1709
|
-
version "15.0.5"
|
1710
|
-
resolved "https://registry.yarnpkg.com/cacache/-/cacache-15.0.5.tgz#69162833da29170d6732334643c60e005f5f17d0"
|
1711
|
-
integrity sha512-lloiL22n7sOjEEXdL8NAjTgv9a1u43xICE9/203qonkZUCj5X1UEWIdf2/Y0d6QcCtMzbKQyhrcDbdvlZTs/+A==
|
1712
|
-
dependencies:
|
1713
|
-
"@npmcli/move-file" "^1.0.1"
|
1714
|
-
chownr "^2.0.0"
|
1715
|
-
fs-minipass "^2.0.0"
|
1716
|
-
glob "^7.1.4"
|
1717
|
-
infer-owner "^1.0.4"
|
1718
|
-
lru-cache "^6.0.0"
|
1719
|
-
minipass "^3.1.1"
|
1720
|
-
minipass-collect "^1.0.2"
|
1721
|
-
minipass-flush "^1.0.5"
|
1722
|
-
minipass-pipeline "^1.2.2"
|
1723
|
-
mkdirp "^1.0.3"
|
1724
|
-
p-map "^4.0.0"
|
1725
|
-
promise-inflight "^1.0.1"
|
1726
|
-
rimraf "^3.0.2"
|
1727
|
-
ssri "^8.0.0"
|
1728
|
-
tar "^6.0.2"
|
1729
|
-
unique-filename "^1.1.1"
|
1730
|
-
|
1731
1967
|
cache-base@^1.0.1:
|
1732
1968
|
version "1.0.1"
|
1733
1969
|
resolved "https://registry.yarnpkg.com/cache-base/-/cache-base-1.0.1.tgz#0a7f46416831c8b662ee36fe4e7c59d76f666ab2"
|
@@ -1805,6 +2041,21 @@ caniuse-lite@^1.0.0, caniuse-lite@^1.0.30000981, caniuse-lite@^1.0.30001004, can
|
|
1805
2041
|
resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001008.tgz#b8841b1df78a9f5ed9702537ef592f1f8772c0d9"
|
1806
2042
|
integrity sha512-b8DJyb+VVXZGRgJUa30cbk8gKHZ3LOZTBLaUEEVr2P4xpmFigOCc62CO4uzquW641Ouq1Rm9N+rWLWdSYDaDIw==
|
1807
2043
|
|
2044
|
+
caniuse-lite@^1.0.30001017:
|
2045
|
+
version "1.0.30001019"
|
2046
|
+
resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001019.tgz#857e3fccaad2b2feb3f1f6d8a8f62d747ea648e1"
|
2047
|
+
integrity sha512-6ljkLtF1KM5fQ+5ZN0wuyVvvebJxgJPTmScOMaFuQN2QuOzvRJnWSKfzQskQU5IOU4Gap3zasYPIinzwUjoj/g==
|
2048
|
+
|
2049
|
+
caniuse-lite@^1.0.30001030:
|
2050
|
+
version "1.0.30001031"
|
2051
|
+
resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001031.tgz#76f1bdd39e19567b855302f65102d9a8aaad5930"
|
2052
|
+
integrity sha512-DpAP5a1NGRLgYfaNCaXIRyGARi+3tJA2quZXNNA1Du26VyVkqvy2tznNu5ANyN1Y5aX44QDotZSVSUSi2uMGjg==
|
2053
|
+
|
2054
|
+
caniuse-lite@^1.0.30001035:
|
2055
|
+
version "1.0.30001035"
|
2056
|
+
resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001035.tgz#2bb53b8aa4716b2ed08e088d4dc816a5fe089a1e"
|
2057
|
+
integrity sha512-C1ZxgkuA4/bUEdMbU5WrGY4+UhMFFiXrgNAfxiMIqWgFTWfv/xsZCS2xEHT2LMq7xAZfuAnu6mcqyDl0ZR6wLQ==
|
2058
|
+
|
1808
2059
|
capture-exit@^2.0.0:
|
1809
2060
|
version "2.0.0"
|
1810
2061
|
resolved "https://registry.yarnpkg.com/capture-exit/-/capture-exit-2.0.0.tgz#fb953bfaebeb781f62898239dabb426d08a509a4"
|
@@ -1871,11 +2122,6 @@ chownr@^1.1.1, chownr@^1.1.2:
|
|
1871
2122
|
resolved "https://registry.yarnpkg.com/chownr/-/chownr-1.1.3.tgz#42d837d5239688d55f303003a508230fa6727142"
|
1872
2123
|
integrity sha512-i70fVHhmV3DtTl6nqvZOnIjbY0Pe4kAUjwHj8z0zAdgBtYrJyYwLKCCuRBQ5ppkyL0AkN7HKRnETdmdp1zqNXw==
|
1873
2124
|
|
1874
|
-
chownr@^2.0.0:
|
1875
|
-
version "2.0.0"
|
1876
|
-
resolved "https://registry.yarnpkg.com/chownr/-/chownr-2.0.0.tgz#15bfbe53d2eab4cf70f18a8cd68ebe5b3cb1dece"
|
1877
|
-
integrity sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==
|
1878
|
-
|
1879
2125
|
chrome-trace-event@^1.0.2:
|
1880
2126
|
version "1.0.2"
|
1881
2127
|
resolved "https://registry.yarnpkg.com/chrome-trace-event/-/chrome-trace-event-1.0.2.tgz#234090ee97c7d4ad1a2c4beae27505deffc608a4"
|
@@ -2032,16 +2278,17 @@ component-emitter@^1.2.1:
|
|
2032
2278
|
resolved "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.3.0.tgz#16e4070fba8ae29b679f2215853ee181ab2eabc0"
|
2033
2279
|
integrity sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg==
|
2034
2280
|
|
2035
|
-
compression-webpack-plugin@^
|
2036
|
-
version "
|
2037
|
-
resolved "https://registry.yarnpkg.com/compression-webpack-plugin/-/compression-webpack-plugin-
|
2038
|
-
integrity sha512-
|
2281
|
+
compression-webpack-plugin@^3.0.1:
|
2282
|
+
version "3.0.1"
|
2283
|
+
resolved "https://registry.yarnpkg.com/compression-webpack-plugin/-/compression-webpack-plugin-3.0.1.tgz#be7a343e6dfbccbd64a77c5fbe29627d140fc321"
|
2284
|
+
integrity sha512-FOwoBVzDiwSdJDnZTKXDpAjJU90k8SbChgxnoiYwTo15xjIDJkSC8wFKuc13DymXjgasPEqzS5+2RUgSKXdKKA==
|
2039
2285
|
dependencies:
|
2040
|
-
cacache "^
|
2041
|
-
find-cache-dir "^3.
|
2042
|
-
|
2043
|
-
|
2044
|
-
|
2286
|
+
cacache "^13.0.1"
|
2287
|
+
find-cache-dir "^3.0.0"
|
2288
|
+
neo-async "^2.5.0"
|
2289
|
+
schema-utils "^2.6.1"
|
2290
|
+
serialize-javascript "^2.1.2"
|
2291
|
+
webpack-sources "^1.0.1"
|
2045
2292
|
|
2046
2293
|
concat-map@0.0.1:
|
2047
2294
|
version "0.0.1"
|
@@ -2107,25 +2354,25 @@ copy-descriptor@^0.1.0:
|
|
2107
2354
|
resolved "https://registry.yarnpkg.com/copy-descriptor/-/copy-descriptor-0.1.1.tgz#676f6eb3c39997c2ee1ac3a924fd6124748f578d"
|
2108
2355
|
integrity sha1-Z29us8OZl8LuGsOpJP1hJHSPV40=
|
2109
2356
|
|
2110
|
-
core-js-compat@^3.
|
2111
|
-
version "3.4
|
2112
|
-
resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.4.
|
2113
|
-
integrity sha512-
|
2357
|
+
core-js-compat@^3.6.2:
|
2358
|
+
version "3.6.4"
|
2359
|
+
resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.6.4.tgz#938476569ebb6cda80d339bcf199fae4f16fff17"
|
2360
|
+
integrity sha512-zAa3IZPvsJ0slViBQ2z+vgyyTuhd3MFn1rBQjZSKVEgB0UMYhUkCj9jJUVPgGTGqWvsBVmfnruXgTcNyTlEiSA==
|
2114
2361
|
dependencies:
|
2115
|
-
browserslist "^4.
|
2116
|
-
semver "
|
2362
|
+
browserslist "^4.8.3"
|
2363
|
+
semver "7.0.0"
|
2117
2364
|
|
2118
|
-
core-js@^3.4
|
2119
|
-
version "3.4
|
2120
|
-
resolved "https://registry.yarnpkg.com/core-js/-/core-js-3.4.
|
2121
|
-
integrity sha512-
|
2365
|
+
core-js@^3.6.4:
|
2366
|
+
version "3.6.4"
|
2367
|
+
resolved "https://registry.yarnpkg.com/core-js/-/core-js-3.6.4.tgz#440a83536b458114b9cb2ac1580ba377dc470647"
|
2368
|
+
integrity sha512-4paDGScNgZP2IXXilaffL9X7968RuvwlkK3xWtZRVqgd8SYNiVKRJvkFd1aqqEuPfN7E68ZHEp9hDj6lHj4Hyw==
|
2122
2369
|
|
2123
2370
|
core-util-is@1.0.2, core-util-is@~1.0.0:
|
2124
2371
|
version "1.0.2"
|
2125
2372
|
resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7"
|
2126
2373
|
integrity sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=
|
2127
2374
|
|
2128
|
-
cosmiconfig@^5.0.0
|
2375
|
+
cosmiconfig@^5.0.0:
|
2129
2376
|
version "5.2.1"
|
2130
2377
|
resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-5.2.1.tgz#040f726809c591e77a17c0a3626ca45b4f168b1a"
|
2131
2378
|
integrity sha512-H65gsXo1SKjf8zmrJ67eJk8aIRKV5ff2D4uKZIBZShbhGSpEmsQOPW/SKMKYhSTrqR7ufy6RP69rPogdaPh/kA==
|
@@ -2135,6 +2382,17 @@ cosmiconfig@^5.0.0, cosmiconfig@^5.2.0:
|
|
2135
2382
|
js-yaml "^3.13.1"
|
2136
2383
|
parse-json "^4.0.0"
|
2137
2384
|
|
2385
|
+
cosmiconfig@^6.0.0:
|
2386
|
+
version "6.0.0"
|
2387
|
+
resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-6.0.0.tgz#da4fee853c52f6b1e6935f41c1a2fc50bd4a9982"
|
2388
|
+
integrity sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg==
|
2389
|
+
dependencies:
|
2390
|
+
"@types/parse-json" "^4.0.0"
|
2391
|
+
import-fresh "^3.1.0"
|
2392
|
+
parse-json "^5.0.0"
|
2393
|
+
path-type "^4.0.0"
|
2394
|
+
yaml "^1.7.2"
|
2395
|
+
|
2138
2396
|
create-ecdh@^4.0.0:
|
2139
2397
|
version "4.0.3"
|
2140
2398
|
resolved "https://registry.yarnpkg.com/create-ecdh/-/create-ecdh-4.0.3.tgz#c9111b6f33045c4697f144787f9254cdc77c45ff"
|
@@ -2230,23 +2488,23 @@ css-has-pseudo@^0.10.0:
|
|
2230
2488
|
postcss "^7.0.6"
|
2231
2489
|
postcss-selector-parser "^5.0.0-rc.4"
|
2232
2490
|
|
2233
|
-
css-loader@^3.
|
2234
|
-
version "3.
|
2235
|
-
resolved "https://registry.yarnpkg.com/css-loader/-/css-loader-3.
|
2236
|
-
integrity sha512
|
2491
|
+
css-loader@^3.4.1:
|
2492
|
+
version "3.4.1"
|
2493
|
+
resolved "https://registry.yarnpkg.com/css-loader/-/css-loader-3.4.1.tgz#dfb7968aa9bffb26bd20375afdffe77d5a234b77"
|
2494
|
+
integrity sha512-+ybmv7sVxxNEenQhkifQDvny/1iNQM7YooJbSfVUdQQvisyg1aKIqgGjCjoFSyVLJMp17z9rfZFQaR5HGHcMbw==
|
2237
2495
|
dependencies:
|
2238
2496
|
camelcase "^5.3.1"
|
2239
2497
|
cssesc "^3.0.0"
|
2240
2498
|
icss-utils "^4.1.1"
|
2241
2499
|
loader-utils "^1.2.3"
|
2242
2500
|
normalize-path "^3.0.0"
|
2243
|
-
postcss "^7.0.
|
2501
|
+
postcss "^7.0.23"
|
2244
2502
|
postcss-modules-extract-imports "^2.0.0"
|
2245
2503
|
postcss-modules-local-by-default "^3.0.2"
|
2246
|
-
postcss-modules-scope "^2.1.
|
2504
|
+
postcss-modules-scope "^2.1.1"
|
2247
2505
|
postcss-modules-values "^3.0.0"
|
2248
|
-
postcss-value-parser "^4.0.
|
2249
|
-
schema-utils "^2.
|
2506
|
+
postcss-value-parser "^4.0.2"
|
2507
|
+
schema-utils "^2.6.0"
|
2250
2508
|
|
2251
2509
|
css-prefers-color-scheme@^3.1.1:
|
2252
2510
|
version "3.1.1"
|
@@ -2423,7 +2681,7 @@ data-urls@^1.0.0:
|
|
2423
2681
|
whatwg-mimetype "^2.2.0"
|
2424
2682
|
whatwg-url "^7.0.0"
|
2425
2683
|
|
2426
|
-
debug@^2.2.0, debug@^2.3.3, debug@^2.6.
|
2684
|
+
debug@^2.2.0, debug@^2.3.3, debug@^2.6.9:
|
2427
2685
|
version "2.6.9"
|
2428
2686
|
resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f"
|
2429
2687
|
integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==
|
@@ -2630,6 +2888,21 @@ electron-to-chromium@^1.3.295:
|
|
2630
2888
|
resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.306.tgz#e8265301d053d5f74e36cb876486830261fbe946"
|
2631
2889
|
integrity sha512-frDqXvrIROoYvikSKTIKbHbzO6M3/qC6kCIt/1FOa9kALe++c4VAJnwjSFvf1tYLEUsP2n9XZ4XSCyqc3l7A/A==
|
2632
2890
|
|
2891
|
+
electron-to-chromium@^1.3.322:
|
2892
|
+
version "1.3.328"
|
2893
|
+
resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.328.tgz#a619575c42f1d5b443103664f25ffa5a80190ee5"
|
2894
|
+
integrity sha512-x4XefnFxDxFwaQ01d/pppJP9meWhOIJ/gtI6/4jqkpsadq79uL7NYSaX64naLmJqvzUBjSrO3IM2+1b/W9KdPg==
|
2895
|
+
|
2896
|
+
electron-to-chromium@^1.3.363:
|
2897
|
+
version "1.3.367"
|
2898
|
+
resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.367.tgz#48abffcaa6591051b612ae70ddc657763ede2662"
|
2899
|
+
integrity sha512-GCHQreWs4zhKA48FNXCjvpV4kTnKoLu2PSAfKX394g34NPvTs2pPh1+jzWitNwhmOYI8zIqt36ulRVRZUgqlfA==
|
2900
|
+
|
2901
|
+
electron-to-chromium@^1.3.378:
|
2902
|
+
version "1.3.379"
|
2903
|
+
resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.379.tgz#81dc5e82a3e72bbb830d93e15bc35eda2bbc910e"
|
2904
|
+
integrity sha512-NK9DBBYEBb5f9D7zXI0hiE941gq3wkBeQmXs1ingigA/jnTg5mhwY2Z5egwA+ZI8OLGKCx0h1Cl8/xeuIBuLlg==
|
2905
|
+
|
2633
2906
|
elliptic@^6.0.0:
|
2634
2907
|
version "6.5.1"
|
2635
2908
|
resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.5.1.tgz#c380f5f909bf1b9b4428d028cd18d3b0efd6b52b"
|
@@ -2702,7 +2975,7 @@ error-ex@^1.2.0, error-ex@^1.3.1:
|
|
2702
2975
|
dependencies:
|
2703
2976
|
is-arrayish "^0.2.1"
|
2704
2977
|
|
2705
|
-
es-abstract@^1.12.0, es-abstract@^1.
|
2978
|
+
es-abstract@^1.12.0, es-abstract@^1.5.1, es-abstract@^1.7.0:
|
2706
2979
|
version "1.16.0"
|
2707
2980
|
resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.16.0.tgz#d3a26dc9c3283ac9750dca569586e976d9dcc06d"
|
2708
2981
|
integrity sha512-xdQnfykZ9JMEiasTAJZJdMWCQ1Vm00NBw79/AWi7ELfZuuPCSOMDZbT9mkOfSctVtfhb+sAAzrm+j//GjjLHLg==
|
@@ -2718,7 +2991,24 @@ es-abstract@^1.12.0, es-abstract@^1.15.0, es-abstract@^1.5.1, es-abstract@^1.7.0
|
|
2718
2991
|
string.prototype.trimleft "^2.1.0"
|
2719
2992
|
string.prototype.trimright "^2.1.0"
|
2720
2993
|
|
2721
|
-
es-
|
2994
|
+
es-abstract@^1.17.0-next.1:
|
2995
|
+
version "1.17.0"
|
2996
|
+
resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.17.0.tgz#f42a517d0036a5591dbb2c463591dc8bb50309b1"
|
2997
|
+
integrity sha512-yYkE07YF+6SIBmg1MsJ9dlub5L48Ek7X0qz+c/CPCHS9EBXfESorzng4cJQjJW5/pB6vDF41u7F8vUhLVDqIug==
|
2998
|
+
dependencies:
|
2999
|
+
es-to-primitive "^1.2.1"
|
3000
|
+
function-bind "^1.1.1"
|
3001
|
+
has "^1.0.3"
|
3002
|
+
has-symbols "^1.0.1"
|
3003
|
+
is-callable "^1.1.5"
|
3004
|
+
is-regex "^1.0.5"
|
3005
|
+
object-inspect "^1.7.0"
|
3006
|
+
object-keys "^1.1.1"
|
3007
|
+
object.assign "^4.1.0"
|
3008
|
+
string.prototype.trimleft "^2.1.1"
|
3009
|
+
string.prototype.trimright "^2.1.1"
|
3010
|
+
|
3011
|
+
es-to-primitive@^1.2.0, es-to-primitive@^1.2.1:
|
2722
3012
|
version "1.2.1"
|
2723
3013
|
resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.2.1.tgz#e55cd4c9cdc188bcefb03b366c736323fc5c898a"
|
2724
3014
|
integrity sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==
|
@@ -2770,30 +3060,36 @@ eslint-import-resolver-node@^0.3.2:
|
|
2770
3060
|
debug "^2.6.9"
|
2771
3061
|
resolve "^1.5.0"
|
2772
3062
|
|
2773
|
-
eslint-module-utils@^2.4.
|
2774
|
-
version "2.
|
2775
|
-
resolved "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.
|
2776
|
-
integrity sha512-
|
3063
|
+
eslint-module-utils@^2.4.1:
|
3064
|
+
version "2.5.0"
|
3065
|
+
resolved "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.5.0.tgz#cdf0b40d623032274ccd2abd7e64c4e524d6e19c"
|
3066
|
+
integrity sha512-kCo8pZaNz2dsAW7nCUjuVoI11EBXXpIzfNxmaoLhXoRDOnqXLC4iSGVRdZPhOitfbdEfMEfKOiENaK6wDPZEGw==
|
2777
3067
|
dependencies:
|
2778
|
-
debug "^2.6.
|
3068
|
+
debug "^2.6.9"
|
2779
3069
|
pkg-dir "^2.0.0"
|
2780
3070
|
|
2781
|
-
eslint-plugin-
|
2782
|
-
version "2.
|
2783
|
-
resolved "https://registry.yarnpkg.com/eslint-plugin-
|
2784
|
-
integrity sha512-
|
3071
|
+
eslint-plugin-eslint-plugin@^2.1.0:
|
3072
|
+
version "2.1.0"
|
3073
|
+
resolved "https://registry.yarnpkg.com/eslint-plugin-eslint-plugin/-/eslint-plugin-eslint-plugin-2.1.0.tgz#a7a00f15a886957d855feacaafee264f039e62d5"
|
3074
|
+
integrity sha512-kT3A/ZJftt28gbl/Cv04qezb/NQ1dwYIbi8lyf806XMxkus7DvOVCLIfTXMrorp322Pnoez7+zabXH29tADIDg==
|
3075
|
+
|
3076
|
+
eslint-plugin-import@^2.19.1:
|
3077
|
+
version "2.19.1"
|
3078
|
+
resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.19.1.tgz#5654e10b7839d064dd0d46cd1b88ec2133a11448"
|
3079
|
+
integrity sha512-x68131aKoCZlCae7rDXKSAQmbT5DQuManyXo2sK6fJJ0aK5CWAkv6A6HJZGgqC8IhjQxYPgo6/IY4Oz8AFsbBw==
|
2785
3080
|
dependencies:
|
2786
3081
|
array-includes "^3.0.3"
|
3082
|
+
array.prototype.flat "^1.2.1"
|
2787
3083
|
contains-path "^0.1.0"
|
2788
3084
|
debug "^2.6.9"
|
2789
3085
|
doctrine "1.5.0"
|
2790
3086
|
eslint-import-resolver-node "^0.3.2"
|
2791
|
-
eslint-module-utils "^2.4.
|
3087
|
+
eslint-module-utils "^2.4.1"
|
2792
3088
|
has "^1.0.3"
|
2793
3089
|
minimatch "^3.0.4"
|
2794
3090
|
object.values "^1.1.0"
|
2795
3091
|
read-pkg-up "^2.0.0"
|
2796
|
-
resolve "^1.
|
3092
|
+
resolve "^1.12.0"
|
2797
3093
|
|
2798
3094
|
eslint-plugin-jsx-a11y@^6.2.3:
|
2799
3095
|
version "6.2.3"
|
@@ -2810,20 +3106,21 @@ eslint-plugin-jsx-a11y@^6.2.3:
|
|
2810
3106
|
has "^1.0.3"
|
2811
3107
|
jsx-ast-utils "^2.2.1"
|
2812
3108
|
|
2813
|
-
eslint-plugin-react@^7.
|
2814
|
-
version "7.
|
2815
|
-
resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-7.
|
2816
|
-
integrity sha512-
|
3109
|
+
eslint-plugin-react@^7.17.0:
|
3110
|
+
version "7.17.0"
|
3111
|
+
resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-7.17.0.tgz#a31b3e134b76046abe3cd278e7482bd35a1d12d7"
|
3112
|
+
integrity sha512-ODB7yg6lxhBVMeiH1c7E95FLD4E/TwmFjltiU+ethv7KPdCwgiFuOZg9zNRHyufStTDLl/dEFqI2Q1VPmCd78A==
|
2817
3113
|
dependencies:
|
2818
3114
|
array-includes "^3.0.3"
|
2819
3115
|
doctrine "^2.1.0"
|
3116
|
+
eslint-plugin-eslint-plugin "^2.1.0"
|
2820
3117
|
has "^1.0.3"
|
2821
|
-
jsx-ast-utils "^2.2.
|
3118
|
+
jsx-ast-utils "^2.2.3"
|
2822
3119
|
object.entries "^1.1.0"
|
2823
|
-
object.fromentries "^2.0.
|
3120
|
+
object.fromentries "^2.0.1"
|
2824
3121
|
object.values "^1.1.0"
|
2825
3122
|
prop-types "^15.7.2"
|
2826
|
-
resolve "^1.
|
3123
|
+
resolve "^1.13.1"
|
2827
3124
|
|
2828
3125
|
eslint-scope@^4.0.3:
|
2829
3126
|
version "4.0.3"
|
@@ -2853,10 +3150,10 @@ eslint-visitor-keys@^1.1.0:
|
|
2853
3150
|
resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-1.1.0.tgz#e2a82cea84ff246ad6fb57f9bde5b46621459ec2"
|
2854
3151
|
integrity sha512-8y9YjtM1JBJU/A9Kc+SbaOV4y29sSWckBwMHa+FGtVj5gN/sbnKDf6xJUl+8g7FAij9LVaP8C24DUiH/f/2Z9A==
|
2855
3152
|
|
2856
|
-
eslint@^6.
|
2857
|
-
version "6.
|
2858
|
-
resolved "https://registry.yarnpkg.com/eslint/-/eslint-6.
|
2859
|
-
integrity sha512-
|
3153
|
+
eslint@^6.8.0:
|
3154
|
+
version "6.8.0"
|
3155
|
+
resolved "https://registry.yarnpkg.com/eslint/-/eslint-6.8.0.tgz#62262d6729739f9275723824302fb227c8c93ffb"
|
3156
|
+
integrity sha512-K+Iayyo2LtyYhDSYwz5D5QdWw0hCacNzyq1Y821Xna2xSJj7cijoLLYmLxTQgcgZ9mC61nryMy9S7GRbYpI5Ig==
|
2860
3157
|
dependencies:
|
2861
3158
|
"@babel/code-frame" "^7.0.0"
|
2862
3159
|
ajv "^6.10.0"
|
@@ -2873,7 +3170,7 @@ eslint@^6.6.0:
|
|
2873
3170
|
file-entry-cache "^5.0.1"
|
2874
3171
|
functional-red-black-tree "^1.0.1"
|
2875
3172
|
glob-parent "^5.0.0"
|
2876
|
-
globals "^
|
3173
|
+
globals "^12.1.0"
|
2877
3174
|
ignore "^4.0.6"
|
2878
3175
|
import-fresh "^3.0.0"
|
2879
3176
|
imurmurhash "^0.1.4"
|
@@ -2886,7 +3183,7 @@ eslint@^6.6.0:
|
|
2886
3183
|
minimatch "^3.0.4"
|
2887
3184
|
mkdirp "^0.5.1"
|
2888
3185
|
natural-compare "^1.4.0"
|
2889
|
-
optionator "^0.8.
|
3186
|
+
optionator "^0.8.3"
|
2890
3187
|
progress "^2.0.0"
|
2891
3188
|
regexpp "^2.0.1"
|
2892
3189
|
semver "^6.1.2"
|
@@ -3065,11 +3362,6 @@ fast-deep-equal@^2.0.1:
|
|
3065
3362
|
resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-2.0.1.tgz#7b05218ddf9667bf7f370bf7fdb2cb15fdd0aa49"
|
3066
3363
|
integrity sha1-ewUhjd+WZ79/Nwv3/bLLFf3Qqkk=
|
3067
3364
|
|
3068
|
-
fast-deep-equal@^3.1.1:
|
3069
|
-
version "3.1.3"
|
3070
|
-
resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525"
|
3071
|
-
integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==
|
3072
|
-
|
3073
3365
|
fast-json-stable-stringify@^2.0.0:
|
3074
3366
|
version "2.0.0"
|
3075
3367
|
resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz#d5142c0caee6b1189f87d3a76111064f86c8bbf2"
|
@@ -3106,13 +3398,13 @@ file-entry-cache@^5.0.1:
|
|
3106
3398
|
dependencies:
|
3107
3399
|
flat-cache "^2.0.1"
|
3108
3400
|
|
3109
|
-
file-loader@^
|
3110
|
-
version "
|
3111
|
-
resolved "https://registry.yarnpkg.com/file-loader/-/file-loader-
|
3112
|
-
integrity sha512
|
3401
|
+
file-loader@^5.0.2:
|
3402
|
+
version "5.0.2"
|
3403
|
+
resolved "https://registry.yarnpkg.com/file-loader/-/file-loader-5.0.2.tgz#7f3d8b4ac85a5e8df61338cfec95d7405f971caa"
|
3404
|
+
integrity sha512-QMiQ+WBkGLejKe81HU8SZ9PovsU/5uaLo0JdTCEXOYv7i7jfAjHZi1tcwp9tSASJPOmmHZtbdCervFmXMH/Dcg==
|
3113
3405
|
dependencies:
|
3114
3406
|
loader-utils "^1.2.3"
|
3115
|
-
schema-utils "^2.
|
3407
|
+
schema-utils "^2.5.0"
|
3116
3408
|
|
3117
3409
|
fill-range@^4.0.0:
|
3118
3410
|
version "4.0.0"
|
@@ -3142,13 +3434,13 @@ find-cache-dir@^3.0.0:
|
|
3142
3434
|
make-dir "^3.0.0"
|
3143
3435
|
pkg-dir "^4.1.0"
|
3144
3436
|
|
3145
|
-
find-cache-dir@^3.
|
3146
|
-
version "3.
|
3147
|
-
resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-3.
|
3148
|
-
integrity sha512-
|
3437
|
+
find-cache-dir@^3.2.0:
|
3438
|
+
version "3.2.0"
|
3439
|
+
resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-3.2.0.tgz#e7fe44c1abc1299f516146e563108fd1006c1874"
|
3440
|
+
integrity sha512-1JKclkYYsf1q9WIJKLZa9S9muC+08RIjzAlLrK4QcYLJMS6mk9yombQ9qf+zJ7H9LS800k0s44L4sDq9VYzqyg==
|
3149
3441
|
dependencies:
|
3150
3442
|
commondir "^1.0.1"
|
3151
|
-
make-dir "^3.0.
|
3443
|
+
make-dir "^3.0.0"
|
3152
3444
|
pkg-dir "^4.1.0"
|
3153
3445
|
|
3154
3446
|
find-up@^1.0.0:
|
@@ -3330,6 +3622,11 @@ gaze@^1.0.0:
|
|
3330
3622
|
dependencies:
|
3331
3623
|
globule "^1.0.0"
|
3332
3624
|
|
3625
|
+
gensync@^1.0.0-beta.1:
|
3626
|
+
version "1.0.0-beta.1"
|
3627
|
+
resolved "https://registry.yarnpkg.com/gensync/-/gensync-1.0.0-beta.1.tgz#58f4361ff987e5ff6e1e7a210827aa371eaac269"
|
3628
|
+
integrity sha512-r8EC6NO1sngH/zdD9fiRDLdcgnbayXah+mLgManTaIZJqEC1MZstmnox8KpnI2/fxQwrp5OpCOYWLp4rBl4Jcg==
|
3629
|
+
|
3333
3630
|
get-caller-file@^1.0.1:
|
3334
3631
|
version "1.0.3"
|
3335
3632
|
resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.3.tgz#f978fa4c90d1dfe7ff2d6beda2a515e713bdcf4a"
|
@@ -3427,11 +3724,18 @@ global-prefix@^3.0.0:
|
|
3427
3724
|
kind-of "^6.0.2"
|
3428
3725
|
which "^1.3.1"
|
3429
3726
|
|
3430
|
-
globals@^11.1.0
|
3727
|
+
globals@^11.1.0:
|
3431
3728
|
version "11.12.0"
|
3432
3729
|
resolved "https://registry.yarnpkg.com/globals/-/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e"
|
3433
3730
|
integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==
|
3434
3731
|
|
3732
|
+
globals@^12.1.0:
|
3733
|
+
version "12.3.0"
|
3734
|
+
resolved "https://registry.yarnpkg.com/globals/-/globals-12.3.0.tgz#1e564ee5c4dded2ab098b0f88f24702a3c56be13"
|
3735
|
+
integrity sha512-wAfjdLgFsPZsklLJvOBUBmzYE8/CwhEqSBEMRXA3qxIiNtyqvjYurAtIfDh6chlEPUfmTY3MnZh5Hfh4q0UlIw==
|
3736
|
+
dependencies:
|
3737
|
+
type-fest "^0.8.1"
|
3738
|
+
|
3435
3739
|
globule@^1.0.0:
|
3436
3740
|
version "1.2.1"
|
3437
3741
|
resolved "https://registry.yarnpkg.com/globule/-/globule-1.2.1.tgz#5dffb1b191f22d20797a9369b49eab4e9839696d"
|
@@ -3487,11 +3791,21 @@ has-flag@^3.0.0:
|
|
3487
3791
|
resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd"
|
3488
3792
|
integrity sha1-tdRU3CGZriJWmfNGfloH87lVuv0=
|
3489
3793
|
|
3794
|
+
has-flag@^4.0.0:
|
3795
|
+
version "4.0.0"
|
3796
|
+
resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b"
|
3797
|
+
integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==
|
3798
|
+
|
3490
3799
|
has-symbols@^1.0.0:
|
3491
3800
|
version "1.0.0"
|
3492
3801
|
resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.0.tgz#ba1a8f1af2a0fc39650f5c850367704122063b44"
|
3493
3802
|
integrity sha1-uhqPGvKg/DllD1yFA2dwQSIGO0Q=
|
3494
3803
|
|
3804
|
+
has-symbols@^1.0.1:
|
3805
|
+
version "1.0.1"
|
3806
|
+
resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.1.tgz#9f5214758a44196c406d9bd76cebf81ec2dd31e8"
|
3807
|
+
integrity sha512-PLcsoqu++dmEIZB+6totNFKq/7Do+Z0u4oT0zKOJNl3lYK6vGwwu2hjHs+68OEZbTjiUE9bgOABXbP/GvrS0Kg==
|
3808
|
+
|
3495
3809
|
has-unicode@^2.0.0:
|
3496
3810
|
version "2.0.1"
|
3497
3811
|
resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9"
|
@@ -3672,6 +3986,14 @@ import-fresh@^3.0.0:
|
|
3672
3986
|
parent-module "^1.0.0"
|
3673
3987
|
resolve-from "^4.0.0"
|
3674
3988
|
|
3989
|
+
import-fresh@^3.1.0:
|
3990
|
+
version "3.2.1"
|
3991
|
+
resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.2.1.tgz#633ff618506e793af5ac91bf48b72677e15cbe66"
|
3992
|
+
integrity sha512-6e1q1cnWP2RXD9/keSkxHScg508CdXqXWgWBaETNhyuBFz+kUZlKboh+ISK+bU++DmbHimVBrOz/zzPe0sZ3sQ==
|
3993
|
+
dependencies:
|
3994
|
+
parent-module "^1.0.0"
|
3995
|
+
resolve-from "^4.0.0"
|
3996
|
+
|
3675
3997
|
import-from@^2.1.0:
|
3676
3998
|
version "2.1.0"
|
3677
3999
|
resolved "https://registry.yarnpkg.com/import-from/-/import-from-2.1.0.tgz#335db7f2a7affd53aaa471d4b8021dee36b7f3b1"
|
@@ -3834,6 +4156,11 @@ is-callable@^1.1.4:
|
|
3834
4156
|
resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.1.4.tgz#1e1adf219e1eeb684d691f9d6a05ff0d30a24d75"
|
3835
4157
|
integrity sha512-r5p9sxJjYnArLjObpjA4xu5EKI3CuKHkJXMhT7kwbpUyIFD1n5PMAsoPvWnvtZiNz7LjkYDRZhd7FlI0eMijEA==
|
3836
4158
|
|
4159
|
+
is-callable@^1.1.5:
|
4160
|
+
version "1.1.5"
|
4161
|
+
resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.1.5.tgz#f7e46b596890456db74e7f6e976cb3273d06faab"
|
4162
|
+
integrity sha512-ESKv5sMCJB2jnHTWZ3O5itG+O128Hsus4K4Qh1h2/cgn2vbgnLSVqfV46AeJA9D5EeeLa9w81KUXMtn34zhX+Q==
|
4163
|
+
|
3837
4164
|
is-ci@^2.0.0:
|
3838
4165
|
version "2.0.0"
|
3839
4166
|
resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-2.0.0.tgz#6bc6334181810e04b5c22b3d589fdca55026404c"
|
@@ -3991,6 +4318,13 @@ is-regex@^1.0.4:
|
|
3991
4318
|
dependencies:
|
3992
4319
|
has "^1.0.1"
|
3993
4320
|
|
4321
|
+
is-regex@^1.0.5:
|
4322
|
+
version "1.0.5"
|
4323
|
+
resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.0.5.tgz#39d589a358bf18967f726967120b8fc1aed74eae"
|
4324
|
+
integrity sha512-vlKW17SNq44owv5AQR3Cq0bQPEb8+kF3UKZ2fiZNOWtztYE5i0CzCZxFDwO58qAOWtxdBRVO/V5Qin1wjCqFYQ==
|
4325
|
+
dependencies:
|
4326
|
+
has "^1.0.3"
|
4327
|
+
|
3994
4328
|
is-resolvable@^1.0.0:
|
3995
4329
|
version "1.1.0"
|
3996
4330
|
resolved "https://registry.yarnpkg.com/is-resolvable/-/is-resolvable-1.1.0.tgz#fb18f87ce1feb925169c9a407c19318a3206ed88"
|
@@ -4453,6 +4787,14 @@ jest-worker@^24.6.0, jest-worker@^24.9.0:
|
|
4453
4787
|
merge-stream "^2.0.0"
|
4454
4788
|
supports-color "^6.1.0"
|
4455
4789
|
|
4790
|
+
jest-worker@^25.1.0:
|
4791
|
+
version "25.1.0"
|
4792
|
+
resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-25.1.0.tgz#75d038bad6fdf58eba0d2ec1835856c497e3907a"
|
4793
|
+
integrity sha512-ZHhHtlxOWSxCoNOKHGbiLzXnl42ga9CxDr27H36Qn+15pQZd3R/F24jrmjDelw9j/iHUIWMWs08/u2QN50HHOg==
|
4794
|
+
dependencies:
|
4795
|
+
merge-stream "^2.0.0"
|
4796
|
+
supports-color "^7.0.0"
|
4797
|
+
|
4456
4798
|
jest@^24.9.0:
|
4457
4799
|
version "24.9.0"
|
4458
4800
|
resolved "https://registry.yarnpkg.com/jest/-/jest-24.9.0.tgz#987d290c05a08b52c56188c1002e368edb007171"
|
@@ -4466,11 +4808,6 @@ js-base64@^2.1.8:
|
|
4466
4808
|
resolved "https://registry.yarnpkg.com/js-base64/-/js-base64-2.5.1.tgz#1efa39ef2c5f7980bb1784ade4a8af2de3291121"
|
4467
4809
|
integrity sha512-M7kLczedRMYX4L8Mdh4MzyAMM9O5osx+4FcOQuTvr3A9F2D9S5JXheN0ewNbrvK2UatkTRhL5ejGmGSjNMiZuw==
|
4468
4810
|
|
4469
|
-
js-levenshtein@^1.1.3:
|
4470
|
-
version "1.1.6"
|
4471
|
-
resolved "https://registry.yarnpkg.com/js-levenshtein/-/js-levenshtein-1.1.6.tgz#c6cee58eb3550372df8deb85fad5ce66ce01d59d"
|
4472
|
-
integrity sha512-X2BB11YZtrRqY4EnQcLX5Rh373zbK4alC1FW7D7MBhL2gtcC17cTnr6DmfHZeS0s2rTHjUTMMHfG7gO8SSdw+g==
|
4473
|
-
|
4474
4811
|
"js-tokens@^3.0.0 || ^4.0.0", js-tokens@^4.0.0:
|
4475
4812
|
version "4.0.0"
|
4476
4813
|
resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499"
|
@@ -4580,7 +4917,7 @@ jsprim@^1.2.2:
|
|
4580
4917
|
json-schema "0.2.3"
|
4581
4918
|
verror "1.10.0"
|
4582
4919
|
|
4583
|
-
jsx-ast-utils@^2.2.1:
|
4920
|
+
jsx-ast-utils@^2.2.1, jsx-ast-utils@^2.2.3:
|
4584
4921
|
version "2.2.3"
|
4585
4922
|
resolved "https://registry.yarnpkg.com/jsx-ast-utils/-/jsx-ast-utils-2.2.3.tgz#8a9364e402448a3ce7f14d357738310d9248054f"
|
4586
4923
|
integrity sha512-EdIHFMm+1BPynpKOpdPqiOsvnIrInRGJD7bzPZdPkjitQEqpdpUuFpq4T0npZFKTiB3RhWFdGN+oqOJIdhDhQA==
|
@@ -4649,6 +4986,13 @@ leven@^3.1.0:
|
|
4649
4986
|
resolved "https://registry.yarnpkg.com/leven/-/leven-3.1.0.tgz#77891de834064cccba82ae7842bb6b14a13ed7f2"
|
4650
4987
|
integrity sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==
|
4651
4988
|
|
4989
|
+
levenary@^1.1.1:
|
4990
|
+
version "1.1.1"
|
4991
|
+
resolved "https://registry.yarnpkg.com/levenary/-/levenary-1.1.1.tgz#842a9ee98d2075aa7faeedbe32679e9205f46f77"
|
4992
|
+
integrity sha512-mkAdOIt79FD6irqjYSs4rdbnlT5vRonMEvBVPVb3XmevfS8kgRXwfes0dhPdEtzTWD/1eNE/Bm/G1iRt6DcnQQ==
|
4993
|
+
dependencies:
|
4994
|
+
leven "^3.1.0"
|
4995
|
+
|
4652
4996
|
levn@^0.3.0, levn@~0.3.0:
|
4653
4997
|
version "0.3.0"
|
4654
4998
|
resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee"
|
@@ -4657,6 +5001,11 @@ levn@^0.3.0, levn@~0.3.0:
|
|
4657
5001
|
prelude-ls "~1.1.2"
|
4658
5002
|
type-check "~0.3.2"
|
4659
5003
|
|
5004
|
+
lines-and-columns@^1.1.6:
|
5005
|
+
version "1.1.6"
|
5006
|
+
resolved "https://registry.yarnpkg.com/lines-and-columns/-/lines-and-columns-1.1.6.tgz#1c00c743b433cd0a4e80758f7b64a57440d9ff00"
|
5007
|
+
integrity sha1-HADHQ7QzzQpOgHWPe2SldEDZ/wA=
|
5008
|
+
|
4660
5009
|
load-json-file@^1.0.0:
|
4661
5010
|
version "1.1.0"
|
4662
5011
|
resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0"
|
@@ -4805,13 +5154,6 @@ lru-cache@^5.1.1:
|
|
4805
5154
|
dependencies:
|
4806
5155
|
yallist "^3.0.2"
|
4807
5156
|
|
4808
|
-
lru-cache@^6.0.0:
|
4809
|
-
version "6.0.0"
|
4810
|
-
resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-6.0.0.tgz#6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94"
|
4811
|
-
integrity sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==
|
4812
|
-
dependencies:
|
4813
|
-
yallist "^4.0.0"
|
4814
|
-
|
4815
5157
|
make-dir@^2.0.0, make-dir@^2.1.0:
|
4816
5158
|
version "2.1.0"
|
4817
5159
|
resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-2.1.0.tgz#5f0310e18b8be898cc07009295a30ae41e91e6f5"
|
@@ -4827,13 +5169,6 @@ make-dir@^3.0.0:
|
|
4827
5169
|
dependencies:
|
4828
5170
|
semver "^6.0.0"
|
4829
5171
|
|
4830
|
-
make-dir@^3.0.2:
|
4831
|
-
version "3.1.0"
|
4832
|
-
resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-3.1.0.tgz#415e967046b3a7f1d185277d84aa58203726a13f"
|
4833
|
-
integrity sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==
|
4834
|
-
dependencies:
|
4835
|
-
semver "^6.0.0"
|
4836
|
-
|
4837
5172
|
makeerror@1.0.x:
|
4838
5173
|
version "1.0.11"
|
4839
5174
|
resolved "https://registry.yarnpkg.com/makeerror/-/makeerror-1.0.11.tgz#e01a5c9109f2af79660e4e8b9587790184f5a96c"
|
@@ -4974,10 +5309,10 @@ mimic-fn@^2.0.0, mimic-fn@^2.1.0:
|
|
4974
5309
|
resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-2.1.0.tgz#7ed2c2ccccaf84d3ffcb7a69b57711fc2083401b"
|
4975
5310
|
integrity sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==
|
4976
5311
|
|
4977
|
-
mini-css-extract-plugin@^0.
|
4978
|
-
version "0.
|
4979
|
-
resolved "https://registry.yarnpkg.com/mini-css-extract-plugin/-/mini-css-extract-plugin-0.
|
4980
|
-
integrity sha512-
|
5312
|
+
mini-css-extract-plugin@^0.9.0:
|
5313
|
+
version "0.9.0"
|
5314
|
+
resolved "https://registry.yarnpkg.com/mini-css-extract-plugin/-/mini-css-extract-plugin-0.9.0.tgz#47f2cf07aa165ab35733b1fc97d4c46c0564339e"
|
5315
|
+
integrity sha512-lp3GeY7ygcgAmVIcRPBVhIkf8Us7FZjA+ILpal44qLdSu11wmjKQ3d9k15lfD7pO4esu9eUIAW7qiYIBppv40A==
|
4981
5316
|
dependencies:
|
4982
5317
|
loader-utils "^1.1.0"
|
4983
5318
|
normalize-url "1.9.1"
|
@@ -5059,14 +5394,6 @@ minizlib@^1.2.1:
|
|
5059
5394
|
dependencies:
|
5060
5395
|
minipass "^2.9.0"
|
5061
5396
|
|
5062
|
-
minizlib@^2.1.0:
|
5063
|
-
version "2.1.0"
|
5064
|
-
resolved "https://registry.yarnpkg.com/minizlib/-/minizlib-2.1.0.tgz#fd52c645301ef09a63a2c209697c294c6ce02cf3"
|
5065
|
-
integrity sha512-EzTZN/fjSvifSX0SlqUERCN39o6T40AMarPbv0MrarSFtIITCBh7bi+dU8nxGFHuqs9jdIAeoYoKuQAAASsPPA==
|
5066
|
-
dependencies:
|
5067
|
-
minipass "^3.0.0"
|
5068
|
-
yallist "^4.0.0"
|
5069
|
-
|
5070
5397
|
mississippi@^3.0.0:
|
5071
5398
|
version "3.0.0"
|
5072
5399
|
resolved "https://registry.yarnpkg.com/mississippi/-/mississippi-3.0.0.tgz#ea0a3291f97e0b5e8776b363d5f0a12d94c67022"
|
@@ -5098,11 +5425,6 @@ mixin-deep@^1.2.0:
|
|
5098
5425
|
dependencies:
|
5099
5426
|
minimist "0.0.8"
|
5100
5427
|
|
5101
|
-
mkdirp@^1.0.3, mkdirp@^1.0.4:
|
5102
|
-
version "1.0.4"
|
5103
|
-
resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-1.0.4.tgz#3eb5ed62622756d79a5f0e2a221dfebad75c2f7e"
|
5104
|
-
integrity sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==
|
5105
|
-
|
5106
5428
|
move-concurrently@^1.0.1:
|
5107
5429
|
version "1.0.1"
|
5108
5430
|
resolved "https://registry.yarnpkg.com/move-concurrently/-/move-concurrently-1.0.1.tgz#be2c005fda32e0b29af1f05d7c4b33214c701f92"
|
@@ -5267,10 +5589,31 @@ node-releases@^1.1.38:
|
|
5267
5589
|
dependencies:
|
5268
5590
|
semver "^6.3.0"
|
5269
5591
|
|
5270
|
-
node-
|
5271
|
-
version "
|
5272
|
-
resolved "https://registry.yarnpkg.com/node-
|
5273
|
-
integrity sha512-
|
5592
|
+
node-releases@^1.1.44:
|
5593
|
+
version "1.1.44"
|
5594
|
+
resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.44.tgz#cd66438a6eb875e3eb012b6a12e48d9f4326ffd7"
|
5595
|
+
integrity sha512-NwbdvJyR7nrcGrXvKAvzc5raj/NkoJudkarh2yIpJ4t0NH4aqjUDz/486P+ynIW5eokKOfzGNRdYoLfBlomruw==
|
5596
|
+
dependencies:
|
5597
|
+
semver "^6.3.0"
|
5598
|
+
|
5599
|
+
node-releases@^1.1.50:
|
5600
|
+
version "1.1.50"
|
5601
|
+
resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.50.tgz#803c40d2c45db172d0410e4efec83aa8c6ad0592"
|
5602
|
+
integrity sha512-lgAmPv9eYZ0bGwUYAKlr8MG6K4CvWliWqnkcT2P8mMAgVrH3lqfBPorFlxiG1pHQnqmavJZ9vbMXUTNyMLbrgQ==
|
5603
|
+
dependencies:
|
5604
|
+
semver "^6.3.0"
|
5605
|
+
|
5606
|
+
node-releases@^1.1.52:
|
5607
|
+
version "1.1.52"
|
5608
|
+
resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.52.tgz#bcffee3e0a758e92e44ecfaecd0a47554b0bcba9"
|
5609
|
+
integrity sha512-snSiT1UypkgGt2wxPqS6ImEUICbNCMb31yaxWrOLXjhlt2z2/IBpaOxzONExqSm4y5oLnAqjjRWu+wsDzK5yNQ==
|
5610
|
+
dependencies:
|
5611
|
+
semver "^6.3.0"
|
5612
|
+
|
5613
|
+
node-sass@^4.13.1:
|
5614
|
+
version "4.13.1"
|
5615
|
+
resolved "https://registry.yarnpkg.com/node-sass/-/node-sass-4.13.1.tgz#9db5689696bb2eec2c32b98bfea4c7a2e992d0a3"
|
5616
|
+
integrity sha512-TTWFx+ZhyDx1Biiez2nB0L3YrCZ/8oHagaDalbuBSlqXgUPsdkUSzJsVxeDO9LtPB49+Fh3WQl3slABo6AotNw==
|
5274
5617
|
dependencies:
|
5275
5618
|
async-foreach "^0.1.3"
|
5276
5619
|
chalk "^1.1.1"
|
@@ -5418,7 +5761,7 @@ object-copy@^0.1.0:
|
|
5418
5761
|
define-property "^0.2.5"
|
5419
5762
|
kind-of "^3.0.3"
|
5420
5763
|
|
5421
|
-
object-inspect@^1.6.0:
|
5764
|
+
object-inspect@^1.6.0, object-inspect@^1.7.0:
|
5422
5765
|
version "1.7.0"
|
5423
5766
|
resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.7.0.tgz#f4f6bd181ad77f006b5ece60bd0b6f398ff74a67"
|
5424
5767
|
integrity sha512-a7pEHdh1xKIAgTySUGgLMx/xwDZskN1Ud6egYYN3EdRW4ZMPNEDUTF+hwy2LUC+Bl+SyLXANnwz/jyh/qutKUw==
|
@@ -5455,13 +5798,13 @@ object.entries@^1.1.0:
|
|
5455
5798
|
function-bind "^1.1.1"
|
5456
5799
|
has "^1.0.3"
|
5457
5800
|
|
5458
|
-
object.fromentries@^2.0.
|
5459
|
-
version "2.0.
|
5460
|
-
resolved "https://registry.yarnpkg.com/object.fromentries/-/object.fromentries-2.0.
|
5461
|
-
integrity sha512-
|
5801
|
+
object.fromentries@^2.0.1:
|
5802
|
+
version "2.0.2"
|
5803
|
+
resolved "https://registry.yarnpkg.com/object.fromentries/-/object.fromentries-2.0.2.tgz#4a09c9b9bb3843dd0f89acdb517a794d4f355ac9"
|
5804
|
+
integrity sha512-r3ZiBH7MQppDJVLx6fhD618GKNG40CZYH9wgwdhKxBDDbQgjeWGGd4AtkZad84d291YxvWe7bJGuE65Anh0dxQ==
|
5462
5805
|
dependencies:
|
5463
5806
|
define-properties "^1.1.3"
|
5464
|
-
es-abstract "^1.
|
5807
|
+
es-abstract "^1.17.0-next.1"
|
5465
5808
|
function-bind "^1.1.1"
|
5466
5809
|
has "^1.0.3"
|
5467
5810
|
|
@@ -5520,7 +5863,7 @@ optimize-css-assets-webpack-plugin@^5.0.3:
|
|
5520
5863
|
cssnano "^4.1.10"
|
5521
5864
|
last-call-webpack-plugin "^3.0.0"
|
5522
5865
|
|
5523
|
-
optionator@^0.8.1, optionator@^0.8.
|
5866
|
+
optionator@^0.8.1, optionator@^0.8.3:
|
5524
5867
|
version "0.8.3"
|
5525
5868
|
resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.3.tgz#84fa1d036fe9d3c7e21d99884b601167ec8fb495"
|
5526
5869
|
integrity sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==
|
@@ -5607,6 +5950,13 @@ p-limit@^2.0.0, p-limit@^2.2.0:
|
|
5607
5950
|
dependencies:
|
5608
5951
|
p-try "^2.0.0"
|
5609
5952
|
|
5953
|
+
p-limit@^2.2.2:
|
5954
|
+
version "2.2.2"
|
5955
|
+
resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-2.2.2.tgz#61279b67721f5287aa1c13a9a7fbbc48c9291b1e"
|
5956
|
+
integrity sha512-WGR+xHecKTr7EbUEhyLSh5Dube9JtdiG78ufaeLxTgpudf/20KqyMioIUZJAezlTIi6evxuoUs9YXc11cU+yzQ==
|
5957
|
+
dependencies:
|
5958
|
+
p-try "^2.0.0"
|
5959
|
+
|
5610
5960
|
p-locate@^2.0.0:
|
5611
5961
|
version "2.0.0"
|
5612
5962
|
resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43"
|
@@ -5635,13 +5985,6 @@ p-map@^3.0.0:
|
|
5635
5985
|
dependencies:
|
5636
5986
|
aggregate-error "^3.0.0"
|
5637
5987
|
|
5638
|
-
p-map@^4.0.0:
|
5639
|
-
version "4.0.0"
|
5640
|
-
resolved "https://registry.yarnpkg.com/p-map/-/p-map-4.0.0.tgz#bb2f95a5eda2ec168ec9274e06a747c3e2904d2b"
|
5641
|
-
integrity sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==
|
5642
|
-
dependencies:
|
5643
|
-
aggregate-error "^3.0.0"
|
5644
|
-
|
5645
5988
|
p-reduce@^1.0.0:
|
5646
5989
|
version "1.0.0"
|
5647
5990
|
resolved "https://registry.yarnpkg.com/p-reduce/-/p-reduce-1.0.0.tgz#18c2b0dd936a4690a529f8231f58a0fdb6a47dfa"
|
@@ -5705,6 +6048,16 @@ parse-json@^4.0.0:
|
|
5705
6048
|
error-ex "^1.3.1"
|
5706
6049
|
json-parse-better-errors "^1.0.1"
|
5707
6050
|
|
6051
|
+
parse-json@^5.0.0:
|
6052
|
+
version "5.0.0"
|
6053
|
+
resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-5.0.0.tgz#73e5114c986d143efa3712d4ea24db9a4266f60f"
|
6054
|
+
integrity sha512-OOY5b7PAEFV0E2Fir1KOkxchnZNCdowAJgQ5NuxjpBKTRP3pQhwkrkxqQjeoKJ+fO7bCpmIZaogI4eZGDMEGOw==
|
6055
|
+
dependencies:
|
6056
|
+
"@babel/code-frame" "^7.0.0"
|
6057
|
+
error-ex "^1.3.1"
|
6058
|
+
json-parse-better-errors "^1.0.1"
|
6059
|
+
lines-and-columns "^1.1.6"
|
6060
|
+
|
5708
6061
|
parse-passwd@^1.0.0:
|
5709
6062
|
version "1.0.0"
|
5710
6063
|
resolved "https://registry.yarnpkg.com/parse-passwd/-/parse-passwd-1.0.0.tgz#6d5b934a456993b23d37f40a382d6f1666a8e5c6"
|
@@ -5790,6 +6143,11 @@ path-type@^3.0.0:
|
|
5790
6143
|
dependencies:
|
5791
6144
|
pify "^3.0.0"
|
5792
6145
|
|
6146
|
+
path-type@^4.0.0:
|
6147
|
+
version "4.0.0"
|
6148
|
+
resolved "https://registry.yarnpkg.com/path-type/-/path-type-4.0.0.tgz#84ed01c0a7ba380afe09d90a8c180dcd9d03043b"
|
6149
|
+
integrity sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==
|
6150
|
+
|
5793
6151
|
pbkdf2@^3.0.3:
|
5794
6152
|
version "3.0.17"
|
5795
6153
|
resolved "https://registry.yarnpkg.com/pbkdf2/-/pbkdf2-3.0.17.tgz#976c206530617b14ebb32114239f7b09336e93a6"
|
@@ -5861,6 +6219,13 @@ pkg-dir@^4.1.0:
|
|
5861
6219
|
dependencies:
|
5862
6220
|
find-up "^4.0.0"
|
5863
6221
|
|
6222
|
+
pkg-up@^3.1.0:
|
6223
|
+
version "3.1.0"
|
6224
|
+
resolved "https://registry.yarnpkg.com/pkg-up/-/pkg-up-3.1.0.tgz#100ec235cc150e4fd42519412596a28512a0def5"
|
6225
|
+
integrity sha512-nDywThFk1i4BQK4twPQ6TA4RT8bDY96yeuCVBWL3ePARCiEKDRSrNGbFIgUJpLp+XeIR65v8ra7WuJOFUBtkMA==
|
6226
|
+
dependencies:
|
6227
|
+
find-up "^3.0.0"
|
6228
|
+
|
5864
6229
|
pn@^1.1.0:
|
5865
6230
|
version "1.1.0"
|
5866
6231
|
resolved "https://registry.yarnpkg.com/pn/-/pn-1.1.0.tgz#e2f4cef0e219f463c179ab37463e4e1ecdccbafb"
|
@@ -6213,10 +6578,10 @@ postcss-modules-local-by-default@^3.0.2:
|
|
6213
6578
|
postcss-selector-parser "^6.0.2"
|
6214
6579
|
postcss-value-parser "^4.0.0"
|
6215
6580
|
|
6216
|
-
postcss-modules-scope@^2.1.
|
6217
|
-
version "2.1.
|
6218
|
-
resolved "https://registry.yarnpkg.com/postcss-modules-scope/-/postcss-modules-scope-2.1.
|
6219
|
-
integrity sha512-
|
6581
|
+
postcss-modules-scope@^2.1.1:
|
6582
|
+
version "2.1.1"
|
6583
|
+
resolved "https://registry.yarnpkg.com/postcss-modules-scope/-/postcss-modules-scope-2.1.1.tgz#33d4fc946602eb5e9355c4165d68a10727689dba"
|
6584
|
+
integrity sha512-OXRUPecnHCg8b9xWvldG/jUpRIGPNRka0r4D4j0ESUU2/5IOnpsjfPPmDprM3Ih8CgZ8FXjWqaniK5v4rWt3oQ==
|
6220
6585
|
dependencies:
|
6221
6586
|
postcss "^7.0.6"
|
6222
6587
|
postcss-selector-parser "^6.0.0"
|
@@ -6523,6 +6888,15 @@ postcss@^7.0.0, postcss@^7.0.1, postcss@^7.0.14, postcss@^7.0.16, postcss@^7.0.1
|
|
6523
6888
|
source-map "^0.6.1"
|
6524
6889
|
supports-color "^6.1.0"
|
6525
6890
|
|
6891
|
+
postcss@^7.0.23:
|
6892
|
+
version "7.0.26"
|
6893
|
+
resolved "https://registry.yarnpkg.com/postcss/-/postcss-7.0.26.tgz#5ed615cfcab35ba9bbb82414a4fa88ea10429587"
|
6894
|
+
integrity sha512-IY4oRjpXWYshuTDFxMVkJDtWIk2LhsTlu8bZnbEJA4+bYT16Lvpo8Qv6EvDumhYRgzjZl489pmsY3qVgJQ08nA==
|
6895
|
+
dependencies:
|
6896
|
+
chalk "^2.4.2"
|
6897
|
+
source-map "^0.6.1"
|
6898
|
+
supports-color "^6.1.0"
|
6899
|
+
|
6526
6900
|
prelude-ls@~1.1.2:
|
6527
6901
|
version "1.1.2"
|
6528
6902
|
resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54"
|
@@ -6543,7 +6917,7 @@ pretty-format@^24.9.0:
|
|
6543
6917
|
ansi-styles "^3.2.0"
|
6544
6918
|
react-is "^16.8.4"
|
6545
6919
|
|
6546
|
-
private@^0.1.
|
6920
|
+
private@^0.1.8:
|
6547
6921
|
version "0.1.8"
|
6548
6922
|
resolved "https://registry.yarnpkg.com/private/-/private-0.1.8.tgz#2381edb3689f7a53d653190060fcf822d2f368ff"
|
6549
6923
|
integrity sha512-VvivMrbvd2nKkiG38qjULzlc+4Vx4wm/whI9pQD35YrARNnhxeiRktSOhSukRLFNlzg6Br/cJPet5J/u19r/mg==
|
@@ -6680,7 +7054,7 @@ querystring@0.2.0:
|
|
6680
7054
|
resolved "https://registry.yarnpkg.com/querystring/-/querystring-0.2.0.tgz#b209849203bb25df820da756e747005878521620"
|
6681
7055
|
integrity sha1-sgmEkgO7Jd+CDadW50cAWHhSFiA=
|
6682
7056
|
|
6683
|
-
randombytes@^2.0.0, randombytes@^2.0.1, randombytes@^2.0.5
|
7057
|
+
randombytes@^2.0.0, randombytes@^2.0.1, randombytes@^2.0.5:
|
6684
7058
|
version "2.1.0"
|
6685
7059
|
resolved "https://registry.yarnpkg.com/randombytes/-/randombytes-2.1.0.tgz#df6f84372f0270dc65cdf6291349ab7a473d4f2a"
|
6686
7060
|
integrity sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==
|
@@ -6768,7 +7142,7 @@ read-pkg@^3.0.0:
|
|
6768
7142
|
normalize-package-data "^2.3.2"
|
6769
7143
|
path-type "^3.0.0"
|
6770
7144
|
|
6771
|
-
"readable-stream@1 || 2", readable-stream@^2.0.
|
7145
|
+
"readable-stream@1 || 2", readable-stream@^2.0.1, readable-stream@^2.0.2, readable-stream@^2.0.6, readable-stream@^2.3.3, readable-stream@^2.3.6:
|
6772
7146
|
version "2.3.6"
|
6773
7147
|
resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.6.tgz#b11c27d88b8ff1fbe070643cf94b0c79ae1b0aaf"
|
6774
7148
|
integrity sha512-tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw==
|
@@ -6781,6 +7155,19 @@ read-pkg@^3.0.0:
|
|
6781
7155
|
string_decoder "~1.1.1"
|
6782
7156
|
util-deprecate "~1.0.1"
|
6783
7157
|
|
7158
|
+
readable-stream@^2.0.0, readable-stream@^2.1.5, readable-stream@^2.2.2, readable-stream@~2.3.6:
|
7159
|
+
version "2.3.7"
|
7160
|
+
resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.7.tgz#1eca1cf711aef814c04f62252a36a62f6cb23b57"
|
7161
|
+
integrity sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==
|
7162
|
+
dependencies:
|
7163
|
+
core-util-is "~1.0.0"
|
7164
|
+
inherits "~2.0.3"
|
7165
|
+
isarray "~1.0.0"
|
7166
|
+
process-nextick-args "~2.0.0"
|
7167
|
+
safe-buffer "~5.1.1"
|
7168
|
+
string_decoder "~1.1.1"
|
7169
|
+
util-deprecate "~1.0.1"
|
7170
|
+
|
6784
7171
|
readdirp@^2.2.1:
|
6785
7172
|
version "2.2.1"
|
6786
7173
|
resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.2.1.tgz#0e87622a3325aa33e892285caf8b4e846529a525"
|
@@ -6822,12 +7209,18 @@ regenerator-runtime@^0.13.2, regenerator-runtime@^0.13.3:
|
|
6822
7209
|
resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.3.tgz#7cf6a77d8f5c6f60eb73c5fc1955b2ceb01e6bf5"
|
6823
7210
|
integrity sha512-naKIZz2GQ8JWh///G7L3X6LaQUAMp2lvb1rvwwsURe/VXwD6VMfr+/1NuNw3ag8v2kY1aQ/go5SNn79O9JU7yw==
|
6824
7211
|
|
6825
|
-
regenerator-
|
6826
|
-
version "0.
|
6827
|
-
resolved "https://registry.yarnpkg.com/regenerator-
|
6828
|
-
integrity sha512-
|
7212
|
+
regenerator-runtime@^0.13.4:
|
7213
|
+
version "0.13.5"
|
7214
|
+
resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.5.tgz#d878a1d094b4306d10b9096484b33ebd55e26697"
|
7215
|
+
integrity sha512-ZS5w8CpKFinUzOwW3c83oPeVXoNsrLsaCoLtJvAClH135j/R77RuymhiSErhm2lKcwSCIpmvIWSbDkIfAqKQlA==
|
7216
|
+
|
7217
|
+
regenerator-transform@^0.14.2:
|
7218
|
+
version "0.14.4"
|
7219
|
+
resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.14.4.tgz#5266857896518d1616a78a0479337a30ea974cc7"
|
7220
|
+
integrity sha512-EaJaKPBI9GvKpvUz2mz4fhx7WPgvwRLY9v3hlNHWmAuJHI13T4nwKnNvm5RWJzEdnI5g5UwtOww+S8IdoUC2bw==
|
6829
7221
|
dependencies:
|
6830
|
-
|
7222
|
+
"@babel/runtime" "^7.8.4"
|
7223
|
+
private "^0.1.8"
|
6831
7224
|
|
6832
7225
|
regex-not@^1.0.0, regex-not@^1.0.2:
|
6833
7226
|
version "1.0.2"
|
@@ -6980,13 +7373,20 @@ resolve@1.1.7:
|
|
6980
7373
|
resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.1.7.tgz#203114d82ad2c5ed9e8e0411b3932875e889e97b"
|
6981
7374
|
integrity sha1-IDEU2CrSxe2ejgQRs5ModeiJ6Xs=
|
6982
7375
|
|
6983
|
-
resolve@^1.1.7, resolve@^1.10.0, resolve@^1.
|
7376
|
+
resolve@^1.1.7, resolve@^1.10.0, resolve@^1.12.0, resolve@^1.3.2, resolve@^1.5.0, resolve@^1.8.1:
|
6984
7377
|
version "1.12.0"
|
6985
7378
|
resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.12.0.tgz#3fc644a35c84a48554609ff26ec52b66fa577df6"
|
6986
7379
|
integrity sha512-B/dOmuoAik5bKcD6s6nXDCjzUKnaDvdkRyAk6rsmsKLipWj4797iothd7jmmUhWTfinVMU+wc56rYKsit2Qy4w==
|
6987
7380
|
dependencies:
|
6988
7381
|
path-parse "^1.0.6"
|
6989
7382
|
|
7383
|
+
resolve@^1.13.1:
|
7384
|
+
version "1.14.2"
|
7385
|
+
resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.14.2.tgz#dbf31d0fa98b1f29aa5169783b9c290cb865fea2"
|
7386
|
+
integrity sha512-EjlOBLBO1kxsUxsKjLt7TAECyKW6fOh1VRkykQkKGzcBbjjPIxBqGh0jf7GJ3k/f5mxMqW3htMD3WdTUVtW8HQ==
|
7387
|
+
dependencies:
|
7388
|
+
path-parse "^1.0.6"
|
7389
|
+
|
6990
7390
|
restore-cursor@^3.1.0:
|
6991
7391
|
version "3.1.0"
|
6992
7392
|
resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-3.1.0.tgz#39f67c54b3a7a58cea5236d95cf0034239631f7e"
|
@@ -7024,13 +7424,6 @@ rimraf@2.6.3:
|
|
7024
7424
|
dependencies:
|
7025
7425
|
glob "^7.1.3"
|
7026
7426
|
|
7027
|
-
rimraf@^3.0.2:
|
7028
|
-
version "3.0.2"
|
7029
|
-
resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a"
|
7030
|
-
integrity sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==
|
7031
|
-
dependencies:
|
7032
|
-
glob "^7.1.3"
|
7033
|
-
|
7034
7427
|
ripemd160@^2.0.0, ripemd160@^2.0.1:
|
7035
7428
|
version "2.0.2"
|
7036
7429
|
resolved "https://registry.yarnpkg.com/ripemd160/-/ripemd160-2.0.2.tgz#a1c1a6f624751577ba5d07914cbc92850585890c"
|
@@ -7112,7 +7505,7 @@ sass-graph@^2.2.4:
|
|
7112
7505
|
scss-tokenizer "^0.2.3"
|
7113
7506
|
yargs "^7.0.0"
|
7114
7507
|
|
7115
|
-
sass-loader
|
7508
|
+
sass-loader@^7.3.1:
|
7116
7509
|
version "7.3.1"
|
7117
7510
|
resolved "https://registry.yarnpkg.com/sass-loader/-/sass-loader-7.3.1.tgz#a5bf68a04bcea1c13ff842d747150f7ab7d0d23f"
|
7118
7511
|
integrity sha512-tuU7+zm0pTCynKYHpdqaPpe+MMTQ76I9TPZ7i4/5dZsigE350shQWe5EZNl5dBidM49TPET75tNqRbcsUZWeNA==
|
@@ -7137,7 +7530,7 @@ schema-utils@^1.0.0:
|
|
7137
7530
|
ajv-errors "^1.0.0"
|
7138
7531
|
ajv-keywords "^3.1.0"
|
7139
7532
|
|
7140
|
-
schema-utils@^2.0.
|
7533
|
+
schema-utils@^2.0.1:
|
7141
7534
|
version "2.5.0"
|
7142
7535
|
resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-2.5.0.tgz#8f254f618d402cc80257486213c8970edfd7c22f"
|
7143
7536
|
integrity sha512-32ISrwW2scPXHUSusP8qMg5dLUawKkyV+/qIEV9JdXKx+rsM6mi8vZY8khg2M69Qom16rtroWXD3Ybtiws38gQ==
|
@@ -7145,13 +7538,20 @@ schema-utils@^2.0.0, schema-utils@^2.0.1, schema-utils@^2.5.0:
|
|
7145
7538
|
ajv "^6.10.2"
|
7146
7539
|
ajv-keywords "^3.4.1"
|
7147
7540
|
|
7148
|
-
schema-utils@^2.
|
7149
|
-
version "2.
|
7150
|
-
resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-2.
|
7151
|
-
integrity sha512-
|
7541
|
+
schema-utils@^2.5.0, schema-utils@^2.6.0, schema-utils@^2.6.1:
|
7542
|
+
version "2.6.1"
|
7543
|
+
resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-2.6.1.tgz#eb78f0b945c7bcfa2082b3565e8db3548011dc4f"
|
7544
|
+
integrity sha512-0WXHDs1VDJyo+Zqs9TKLKyD/h7yDpHUhEFsM2CzkICFdoX1av+GBq/J2xRTFfsQO5kBfhZzANf2VcIm84jqDbg==
|
7545
|
+
dependencies:
|
7546
|
+
ajv "^6.10.2"
|
7547
|
+
ajv-keywords "^3.4.1"
|
7548
|
+
|
7549
|
+
schema-utils@^2.6.4:
|
7550
|
+
version "2.6.4"
|
7551
|
+
resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-2.6.4.tgz#a27efbf6e4e78689d91872ee3ccfa57d7bdd0f53"
|
7552
|
+
integrity sha512-VNjcaUxVnEeun6B2fiiUDjXXBtD4ZSH7pdbfIu1pOFwgptDPLMo/z9jr4sUfsjFVPqDCEin/F7IYlq7/E6yDbQ==
|
7152
7553
|
dependencies:
|
7153
|
-
|
7154
|
-
ajv "^6.12.2"
|
7554
|
+
ajv "^6.10.2"
|
7155
7555
|
ajv-keywords "^3.4.1"
|
7156
7556
|
|
7157
7557
|
scss-tokenizer@^0.2.3:
|
@@ -7167,6 +7567,11 @@ scss-tokenizer@^0.2.3:
|
|
7167
7567
|
resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7"
|
7168
7568
|
integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==
|
7169
7569
|
|
7570
|
+
semver@7.0.0:
|
7571
|
+
version "7.0.0"
|
7572
|
+
resolved "https://registry.yarnpkg.com/semver/-/semver-7.0.0.tgz#5f3ca35761e47e05b206c6daff2cf814f0316b8e"
|
7573
|
+
integrity sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A==
|
7574
|
+
|
7170
7575
|
semver@^6.0.0, semver@^6.1.2, semver@^6.2.0, semver@^6.3.0:
|
7171
7576
|
version "6.3.0"
|
7172
7577
|
resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d"
|
@@ -7177,22 +7582,10 @@ semver@~5.3.0:
|
|
7177
7582
|
resolved "https://registry.yarnpkg.com/semver/-/semver-5.3.0.tgz#9b2ce5d3de02d17c6012ad326aa6b4d0cf54f94f"
|
7178
7583
|
integrity sha1-myzl094C0XxgEq0yaqa00M9U+U8=
|
7179
7584
|
|
7180
|
-
serialize-javascript@^1.
|
7181
|
-
version "1.
|
7182
|
-
resolved "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-1.
|
7183
|
-
integrity sha512-
|
7184
|
-
|
7185
|
-
serialize-javascript@^2.1.0:
|
7186
|
-
version "2.1.0"
|
7187
|
-
resolved "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-2.1.0.tgz#9310276819efd0eb128258bb341957f6eb2fc570"
|
7188
|
-
integrity sha512-a/mxFfU00QT88umAJQsNWOnUKckhNCqOl028N48e7wFmo2/EHpTo9Wso+iJJCMrQnmFvcjto5RJdAHEvVhcyUQ==
|
7189
|
-
|
7190
|
-
serialize-javascript@^4.0.0:
|
7191
|
-
version "4.0.0"
|
7192
|
-
resolved "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-4.0.0.tgz#b525e1238489a5ecfc42afacc3fe99e666f4b1aa"
|
7193
|
-
integrity sha512-GaNA54380uFefWghODBWEGisLZFj00nS5ACs6yHa9nLqlLpVLO8ChDGeKRjZnV4Nh4n0Qi7nhYZD/9fCPzEqkw==
|
7194
|
-
dependencies:
|
7195
|
-
randombytes "^2.1.0"
|
7585
|
+
serialize-javascript@^2.1.2:
|
7586
|
+
version "2.1.2"
|
7587
|
+
resolved "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-2.1.2.tgz#ecec53b0e0317bdc95ef76ab7074b7384785fa61"
|
7588
|
+
integrity sha512-rs9OggEUF0V4jUSecXazOYsLfu7OGK2qIn3c7IPBiffz32XniEp/TX9Xmc9LQfK2nQ2QKHvZ2oygKUGU0lG4jQ==
|
7196
7589
|
|
7197
7590
|
set-blocking@^2.0.0, set-blocking@~2.0.0:
|
7198
7591
|
version "2.0.0"
|
@@ -7428,13 +7821,6 @@ ssri@^7.0.0:
|
|
7428
7821
|
figgy-pudding "^3.5.1"
|
7429
7822
|
minipass "^3.1.1"
|
7430
7823
|
|
7431
|
-
ssri@^8.0.0:
|
7432
|
-
version "8.0.0"
|
7433
|
-
resolved "https://registry.yarnpkg.com/ssri/-/ssri-8.0.0.tgz#79ca74e21f8ceaeddfcb4b90143c458b8d988808"
|
7434
|
-
integrity sha512-aq/pz989nxVYwn16Tsbj1TqFpD5LLrQxHf5zaHuieFV+R0Bbr4y8qUsOA45hXT/N4/9UNXTarBjnjVmjSOVaAA==
|
7435
|
-
dependencies:
|
7436
|
-
minipass "^3.1.1"
|
7437
|
-
|
7438
7824
|
stable@^0.1.8:
|
7439
7825
|
version "0.1.8"
|
7440
7826
|
resolved "https://registry.yarnpkg.com/stable/-/stable-0.1.8.tgz#836eb3c8382fe2936feaf544631017ce7d47a3cf"
|
@@ -7493,9 +7879,9 @@ stream-http@^2.7.2:
|
|
7493
7879
|
xtend "^4.0.0"
|
7494
7880
|
|
7495
7881
|
stream-shift@^1.0.0:
|
7496
|
-
version "1.0.
|
7497
|
-
resolved "https://registry.yarnpkg.com/stream-shift/-/stream-shift-1.0.
|
7498
|
-
integrity
|
7882
|
+
version "1.0.1"
|
7883
|
+
resolved "https://registry.yarnpkg.com/stream-shift/-/stream-shift-1.0.1.tgz#d7088281559ab2778424279b0877da3c392d5a3d"
|
7884
|
+
integrity sha512-AiisoFqQ0vbGcZgQPY1cdP2I76glaVA/RauYR4G4thNFgkTqr90yXTo4LYX60Jl+sIlPNHHdGSwo01AvbKUSVQ==
|
7499
7885
|
|
7500
7886
|
strict-uri-encode@^1.0.0:
|
7501
7887
|
version "1.1.0"
|
@@ -7553,6 +7939,14 @@ string.prototype.trimleft@^2.1.0:
|
|
7553
7939
|
define-properties "^1.1.3"
|
7554
7940
|
function-bind "^1.1.1"
|
7555
7941
|
|
7942
|
+
string.prototype.trimleft@^2.1.1:
|
7943
|
+
version "2.1.1"
|
7944
|
+
resolved "https://registry.yarnpkg.com/string.prototype.trimleft/-/string.prototype.trimleft-2.1.1.tgz#9bdb8ac6abd6d602b17a4ed321870d2f8dcefc74"
|
7945
|
+
integrity sha512-iu2AGd3PuP5Rp7x2kEZCrB2Nf41ehzh+goo8TV7z8/XDBbsvc6HQIlUl9RjkZ4oyrW1XM5UwlGl1oVEaDjg6Ag==
|
7946
|
+
dependencies:
|
7947
|
+
define-properties "^1.1.3"
|
7948
|
+
function-bind "^1.1.1"
|
7949
|
+
|
7556
7950
|
string.prototype.trimright@^2.1.0:
|
7557
7951
|
version "2.1.0"
|
7558
7952
|
resolved "https://registry.yarnpkg.com/string.prototype.trimright/-/string.prototype.trimright-2.1.0.tgz#669d164be9df9b6f7559fa8e89945b168a5a6c58"
|
@@ -7561,6 +7955,14 @@ string.prototype.trimright@^2.1.0:
|
|
7561
7955
|
define-properties "^1.1.3"
|
7562
7956
|
function-bind "^1.1.1"
|
7563
7957
|
|
7958
|
+
string.prototype.trimright@^2.1.1:
|
7959
|
+
version "2.1.1"
|
7960
|
+
resolved "https://registry.yarnpkg.com/string.prototype.trimright/-/string.prototype.trimright-2.1.1.tgz#440314b15996c866ce8a0341894d45186200c5d9"
|
7961
|
+
integrity sha512-qFvWL3/+QIgZXVmJBfpHmxLB7xsUXz6HsUmP8+5dRaC3Q7oKUv9Vo6aMCRZC1smrtyECFsIT30PqBJ1gTjAs+g==
|
7962
|
+
dependencies:
|
7963
|
+
define-properties "^1.1.3"
|
7964
|
+
function-bind "^1.1.1"
|
7965
|
+
|
7564
7966
|
string_decoder@^1.0.0:
|
7565
7967
|
version "1.3.0"
|
7566
7968
|
resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.3.0.tgz#42f114594a46cf1a8e30b0a84f56c78c3edac21e"
|
@@ -7630,10 +8032,10 @@ strip-json-comments@~2.0.1:
|
|
7630
8032
|
resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a"
|
7631
8033
|
integrity sha1-PFMZQukIwml8DsNEhYwobHygpgo=
|
7632
8034
|
|
7633
|
-
style-loader@^1.
|
7634
|
-
version "1.
|
7635
|
-
resolved "https://registry.yarnpkg.com/style-loader/-/style-loader-1.
|
7636
|
-
integrity sha512-
|
8035
|
+
style-loader@^1.1.2:
|
8036
|
+
version "1.1.2"
|
8037
|
+
resolved "https://registry.yarnpkg.com/style-loader/-/style-loader-1.1.2.tgz#1b519c19faf548df6182b93e72ea1a4156022c2f"
|
8038
|
+
integrity sha512-0Mpq1ZHFDCNq1F+6avNBgv+7q8V+mWRuzehxyJT+aKgzyN/yfKTwjYqaYwBgx+11UpQxL21zNQfzzlz+JcGURw==
|
7637
8039
|
dependencies:
|
7638
8040
|
loader-utils "^1.2.3"
|
7639
8041
|
schema-utils "^2.0.1"
|
@@ -7666,6 +8068,13 @@ supports-color@^5.3.0:
|
|
7666
8068
|
dependencies:
|
7667
8069
|
has-flag "^3.0.0"
|
7668
8070
|
|
8071
|
+
supports-color@^7.0.0:
|
8072
|
+
version "7.1.0"
|
8073
|
+
resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.1.0.tgz#68e32591df73e25ad1c4b49108a2ec507962bfd1"
|
8074
|
+
integrity sha512-oRSIpR8pxT1Wr2FquTNnGet79b3BWljqOuoW/h4oBhxJ/HUbX5nX6JSruTkvXDCFMwDPvsaTTbvMLKZWSy0R5g==
|
8075
|
+
dependencies:
|
8076
|
+
has-flag "^4.0.0"
|
8077
|
+
|
7669
8078
|
svgo@^1.0.0:
|
7670
8079
|
version "1.3.2"
|
7671
8080
|
resolved "https://registry.yarnpkg.com/svgo/-/svgo-1.3.2.tgz#b6dc511c063346c9e415b81e43401145b96d4167"
|
@@ -7727,51 +8136,49 @@ tar@^4:
|
|
7727
8136
|
safe-buffer "^5.1.2"
|
7728
8137
|
yallist "^3.0.3"
|
7729
8138
|
|
7730
|
-
|
7731
|
-
version "
|
7732
|
-
resolved "https://registry.yarnpkg.com/
|
7733
|
-
integrity sha512-
|
7734
|
-
dependencies:
|
7735
|
-
chownr "^2.0.0"
|
7736
|
-
fs-minipass "^2.0.0"
|
7737
|
-
minipass "^3.0.0"
|
7738
|
-
minizlib "^2.1.0"
|
7739
|
-
mkdirp "^1.0.3"
|
7740
|
-
yallist "^4.0.0"
|
7741
|
-
|
7742
|
-
terser-webpack-plugin@^1.4.1:
|
7743
|
-
version "1.4.1"
|
7744
|
-
resolved "https://registry.yarnpkg.com/terser-webpack-plugin/-/terser-webpack-plugin-1.4.1.tgz#61b18e40eaee5be97e771cdbb10ed1280888c2b4"
|
7745
|
-
integrity sha512-ZXmmfiwtCLfz8WKZyYUuuHf3dMYEjg8NrjHMb0JqHVHVOSkzp3cW2/XG1fP3tRhqEqSzMwzzRQGtAPbs4Cncxg==
|
8139
|
+
terser-webpack-plugin@^1.4.3:
|
8140
|
+
version "1.4.3"
|
8141
|
+
resolved "https://registry.yarnpkg.com/terser-webpack-plugin/-/terser-webpack-plugin-1.4.3.tgz#5ecaf2dbdc5fb99745fd06791f46fc9ddb1c9a7c"
|
8142
|
+
integrity sha512-QMxecFz/gHQwteWwSo5nTc6UaICqN1bMedC5sMtUc7y3Ha3Q8y6ZO0iCR8pq4RJC8Hjf0FEPEHZqcMB/+DFCrA==
|
7746
8143
|
dependencies:
|
7747
8144
|
cacache "^12.0.2"
|
7748
8145
|
find-cache-dir "^2.1.0"
|
7749
8146
|
is-wsl "^1.1.0"
|
7750
8147
|
schema-utils "^1.0.0"
|
7751
|
-
serialize-javascript "^1.
|
8148
|
+
serialize-javascript "^2.1.2"
|
7752
8149
|
source-map "^0.6.1"
|
7753
8150
|
terser "^4.1.2"
|
7754
8151
|
webpack-sources "^1.4.0"
|
7755
8152
|
worker-farm "^1.7.0"
|
7756
8153
|
|
7757
|
-
terser-webpack-plugin@^2.
|
7758
|
-
version "2.
|
7759
|
-
resolved "https://registry.yarnpkg.com/terser-webpack-plugin/-/terser-webpack-plugin-2.
|
7760
|
-
integrity sha512-
|
8154
|
+
terser-webpack-plugin@^2.3.5:
|
8155
|
+
version "2.3.5"
|
8156
|
+
resolved "https://registry.yarnpkg.com/terser-webpack-plugin/-/terser-webpack-plugin-2.3.5.tgz#5ad971acce5c517440ba873ea4f09687de2f4a81"
|
8157
|
+
integrity sha512-WlWksUoq+E4+JlJ+h+U+QUzXpcsMSSNXkDy9lBVkSqDn1w23Gg29L/ary9GeJVYCGiNJJX7LnVc4bwL1N3/g1w==
|
7761
8158
|
dependencies:
|
7762
8159
|
cacache "^13.0.1"
|
7763
|
-
find-cache-dir "^3.
|
7764
|
-
jest-worker "^
|
7765
|
-
|
7766
|
-
|
8160
|
+
find-cache-dir "^3.2.0"
|
8161
|
+
jest-worker "^25.1.0"
|
8162
|
+
p-limit "^2.2.2"
|
8163
|
+
schema-utils "^2.6.4"
|
8164
|
+
serialize-javascript "^2.1.2"
|
7767
8165
|
source-map "^0.6.1"
|
7768
|
-
terser "^4.3
|
8166
|
+
terser "^4.4.3"
|
7769
8167
|
webpack-sources "^1.4.3"
|
7770
8168
|
|
7771
|
-
terser@^4.1.2
|
7772
|
-
version "4.
|
7773
|
-
resolved "https://registry.yarnpkg.com/terser/-/terser-4.
|
7774
|
-
integrity sha512-
|
8169
|
+
terser@^4.1.2:
|
8170
|
+
version "4.6.2"
|
8171
|
+
resolved "https://registry.yarnpkg.com/terser/-/terser-4.6.2.tgz#cb1cf055e7f70caa5863f00ba3e67dc3c97b5150"
|
8172
|
+
integrity sha512-6FUjJdY2i3WZAtYBtnV06OOcOfzl+4hSKYE9wgac8rkLRBToPDDrBB2AcHwQD/OKDxbnvhVy2YgOPWO2SsKWqg==
|
8173
|
+
dependencies:
|
8174
|
+
commander "^2.20.0"
|
8175
|
+
source-map "~0.6.1"
|
8176
|
+
source-map-support "~0.5.12"
|
8177
|
+
|
8178
|
+
terser@^4.4.3:
|
8179
|
+
version "4.4.3"
|
8180
|
+
resolved "https://registry.yarnpkg.com/terser/-/terser-4.4.3.tgz#401abc52b88869cf904412503b1eb7da093ae2f0"
|
8181
|
+
integrity sha512-0ikKraVtRDKGzHrzkCv5rUNDzqlhmhowOBqC0XqUHFpW+vJ45+20/IFBcebwKfiS2Z9fJin6Eo+F1zLZsxi8RA==
|
7775
8182
|
dependencies:
|
7776
8183
|
commander "^2.20.0"
|
7777
8184
|
source-map "~0.6.1"
|
@@ -7943,6 +8350,11 @@ type-fest@^0.5.2:
|
|
7943
8350
|
resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.5.2.tgz#d6ef42a0356c6cd45f49485c3b6281fc148e48a2"
|
7944
8351
|
integrity sha512-DWkS49EQKVX//Tbupb9TFa19c7+MK1XmzkrZUR8TAktmE/DizXoaoJV6TZ/tSIPXipqNiRI6CyAe7x69Jb6RSw==
|
7945
8352
|
|
8353
|
+
type-fest@^0.8.1:
|
8354
|
+
version "0.8.1"
|
8355
|
+
resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.8.1.tgz#09e249ebde851d3b1e48d27c105444667f17b83d"
|
8356
|
+
integrity sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==
|
8357
|
+
|
7946
8358
|
typedarray@^0.0.6:
|
7947
8359
|
version "0.0.6"
|
7948
8360
|
resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777"
|
@@ -8183,7 +8595,7 @@ webpack-cli@^3.3.10:
|
|
8183
8595
|
v8-compile-cache "2.0.3"
|
8184
8596
|
yargs "13.2.4"
|
8185
8597
|
|
8186
|
-
webpack-sources@^1.0.0, webpack-sources@^1.1.0, webpack-sources@^1.4.0, webpack-sources@^1.4.1, webpack-sources@^1.4.3:
|
8598
|
+
webpack-sources@^1.0.0, webpack-sources@^1.0.1, webpack-sources@^1.1.0, webpack-sources@^1.4.0, webpack-sources@^1.4.1, webpack-sources@^1.4.3:
|
8187
8599
|
version "1.4.3"
|
8188
8600
|
resolved "https://registry.yarnpkg.com/webpack-sources/-/webpack-sources-1.4.3.tgz#eedd8ec0b928fbf1cbfe994e22d2d890f330a933"
|
8189
8601
|
integrity sha512-lgTS3Xhv1lCOKo7SA5TjKXMjpSM4sBjNV5+q2bqesbSPs5FjGmU6jjtBSkX9b4qW87vDIsCIlUPOEhbZrMdjeQ==
|
@@ -8191,10 +8603,10 @@ webpack-sources@^1.0.0, webpack-sources@^1.1.0, webpack-sources@^1.4.0, webpack-
|
|
8191
8603
|
source-list-map "^2.0.0"
|
8192
8604
|
source-map "~0.6.1"
|
8193
8605
|
|
8194
|
-
webpack@^4.
|
8195
|
-
version "4.
|
8196
|
-
resolved "https://registry.yarnpkg.com/webpack/-/webpack-4.
|
8197
|
-
integrity sha512-
|
8606
|
+
webpack@^4.42.0:
|
8607
|
+
version "4.42.0"
|
8608
|
+
resolved "https://registry.yarnpkg.com/webpack/-/webpack-4.42.0.tgz#b901635dd6179391d90740a63c93f76f39883eb8"
|
8609
|
+
integrity sha512-EzJRHvwQyBiYrYqhyjW9AqM90dE4+s1/XtCfn7uWg6cS72zH+2VPFAlsnW0+W0cDi0XRjNKUMoJtpSi50+Ph6w==
|
8198
8610
|
dependencies:
|
8199
8611
|
"@webassemblyjs/ast" "1.8.5"
|
8200
8612
|
"@webassemblyjs/helper-module-context" "1.8.5"
|
@@ -8216,7 +8628,7 @@ webpack@^4.41.2:
|
|
8216
8628
|
node-libs-browser "^2.2.1"
|
8217
8629
|
schema-utils "^1.0.0"
|
8218
8630
|
tapable "^1.1.3"
|
8219
|
-
terser-webpack-plugin "^1.4.
|
8631
|
+
terser-webpack-plugin "^1.4.3"
|
8220
8632
|
watchpack "^1.6.0"
|
8221
8633
|
webpack-sources "^1.4.1"
|
8222
8634
|
|
@@ -8371,6 +8783,13 @@ yallist@^4.0.0:
|
|
8371
8783
|
resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72"
|
8372
8784
|
integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==
|
8373
8785
|
|
8786
|
+
yaml@^1.7.2:
|
8787
|
+
version "1.7.2"
|
8788
|
+
resolved "https://registry.yarnpkg.com/yaml/-/yaml-1.7.2.tgz#f26aabf738590ab61efaca502358e48dc9f348b2"
|
8789
|
+
integrity sha512-qXROVp90sb83XtAoqE8bP9RwAkTTZbugRUTm5YeFCBfNRPEp2YzTeqWiz7m5OORHzEvrA/qcGS8hp/E+MMROYw==
|
8790
|
+
dependencies:
|
8791
|
+
"@babel/runtime" "^7.6.3"
|
8792
|
+
|
8374
8793
|
yargs-parser@^13.1.0, yargs-parser@^13.1.1:
|
8375
8794
|
version "13.1.1"
|
8376
8795
|
resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-13.1.1.tgz#d26058532aa06d365fe091f6a1fc06b2f7e5eca0"
|