stimulus_reflex 3.4.0.pre0 → 3.4.0.pre5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of stimulus_reflex might be problematic. Click here for more details.

@@ -0,0 +1,34 @@
1
+ require_relative "../test_helper"
2
+
3
+ class StimulusReflex::NothingBroadcasterTest < ActiveSupport::TestCase
4
+ setup do
5
+ @reflex = Minitest::Mock.new
6
+ @reflex.expect :stream_name, "TestStream"
7
+ end
8
+
9
+ test "broadcasts a server message when called" do
10
+ broadcaster = StimulusReflex::NothingBroadcaster.new(@reflex)
11
+
12
+ cable_ready_channels = Minitest::Mock.new
13
+ cable_ready_channel = Minitest::Mock.new
14
+ CableReady::Channels.stub :instance, cable_ready_channels do
15
+ cable_ready_channel.expect(:dispatch_event, nil, [{name: "stimulus-reflex:server-message",
16
+ detail: {
17
+ reflexId: nil,
18
+ stimulus_reflex: {
19
+ some: :data,
20
+ morph: :nothing,
21
+ server_message: {
22
+ subject: "nothing", body: nil
23
+ }
24
+ }
25
+ }}])
26
+ cable_ready_channels.expect(:[], cable_ready_channel, ["TestStream"])
27
+ cable_ready_channels.expect(:broadcast, nil)
28
+ broadcaster.broadcast(nil, {some: :data})
29
+ end
30
+
31
+ assert_mock cable_ready_channels
32
+ assert_mock cable_ready_channel
33
+ end
34
+ end
@@ -0,0 +1,69 @@
1
+ require_relative "../test_helper"
2
+
3
+ class StimulusReflex::PageBroadcasterTest < ActiveSupport::TestCase
4
+ setup do
5
+ @reflex = Minitest::Mock.new
6
+ @reflex.expect :params, {action: "show"}
7
+ @reflex.expect :stream_name, "TestStream"
8
+ @reflex.expect :permanent_attribute_name, "some-attribute"
9
+ end
10
+
11
+ test "returns if the response html is empty" do
12
+ controller = Minitest::Mock.new
13
+ controller.expect(:process, nil, ["show"])
14
+ @reflex.expect :controller, controller
15
+ @reflex.expect :controller, controller
16
+
17
+ # stub the controller response with a struct responding to :body
18
+ controller.expect(:response, Struct.new(:body).new(nil))
19
+
20
+ broadcaster = StimulusReflex::PageBroadcaster.new(@reflex)
21
+
22
+ cable_ready_channels = Minitest::Mock.new
23
+ cable_ready_channels.expect(:broadcast, nil)
24
+
25
+ broadcaster.broadcast(["#foo"], {some: :data})
26
+
27
+ assert_raises { cable_ready_channels.verify }
28
+ end
29
+
30
+ test "performs a page morph given an array of reflex root selectors" do
31
+ controller = Minitest::Mock.new
32
+ controller.expect(:process, nil, ["show"])
33
+ @reflex.expect :controller, controller
34
+ @reflex.expect :controller, controller
35
+
36
+ # stub the controller response with a struct responding to :body
37
+ controller.expect(:response, Struct.new(:body).new("<html></html>"))
38
+
39
+ broadcaster = StimulusReflex::PageBroadcaster.new(@reflex)
40
+
41
+ cable_ready_channels = Minitest::Mock.new
42
+ cable_ready_channel = Minitest::Mock.new
43
+ document = Minitest::Mock.new
44
+ Nokogiri::HTML.stub :parse, document do
45
+ document.expect(:css, "something that is present", ["#foo"])
46
+ document.expect(:css, Struct.new(:inner_html).new("<span>bar</span>"), ["#foo"])
47
+
48
+ CableReady::Channels.stub :instance, cable_ready_channels do
49
+ cable_ready_channel.expect(:morph, nil, [{
50
+ selector: "#foo",
51
+ html: "<span>bar</span>",
52
+ children_only: true,
53
+ permanent_attribute_name: "some-attribute",
54
+ stimulus_reflex: {
55
+ some: :data,
56
+ morph: :page
57
+ }
58
+ }])
59
+ cable_ready_channels.expect(:[], cable_ready_channel, ["TestStream"])
60
+ cable_ready_channels.expect(:broadcast, nil)
61
+
62
+ broadcaster.broadcast(["#foo"], {some: :data})
63
+ end
64
+ end
65
+
66
+ assert_mock cable_ready_channels
67
+ assert_mock cable_ready_channel
68
+ end
69
+ end
@@ -0,0 +1,83 @@
1
+ require_relative "../test_helper"
2
+
3
+ class StimulusReflex::SelectorBroadcasterTest < ActiveSupport::TestCase
4
+ setup do
5
+ @reflex = Minitest::Mock.new
6
+ @reflex.expect :stream_name, "TestStream"
7
+ @reflex.expect :permanent_attribute_name, "some-attribute"
8
+ end
9
+
10
+ test "morphs the contents of an element if the selector(s) are present in both original and morphed html fragments" do
11
+ broadcaster = StimulusReflex::SelectorBroadcaster.new(@reflex)
12
+
13
+ cable_ready_channels = Minitest::Mock.new
14
+ cable_ready_channel = Minitest::Mock.new
15
+ fragment = Minitest::Mock.new
16
+ match = Minitest::Mock.new
17
+ Nokogiri::HTML.stub :fragment, fragment do
18
+ fragment.expect(:at_css, match, ["#foo"])
19
+ match.expect(:present?, true)
20
+
21
+ # we need to mock `!`, because `blank?` returns
22
+ # respond_to?(:empty?) ? !!empty? : !self
23
+ match.expect(:!, false)
24
+ match.expect(:inner_html, "<span>bar</span>")
25
+ CableReady::Channels.stub :instance, cable_ready_channels do
26
+ broadcaster.append_morph("#foo", "<div id=\"foo\"><span>bar</span></div>")
27
+ cable_ready_channel.expect(:morph, nil, [{
28
+ selector: "#foo",
29
+ html: "<span>bar</span>",
30
+ children_only: true,
31
+ permanent_attribute_name: "some-attribute",
32
+ stimulus_reflex: {
33
+ some: :data,
34
+ morph: :selector
35
+ }
36
+ }])
37
+ cable_ready_channels.expect(:[], cable_ready_channel, ["TestStream"])
38
+ cable_ready_channels.expect(:broadcast, nil)
39
+
40
+ broadcaster.broadcast(nil, {some: :data})
41
+ end
42
+ end
43
+
44
+ assert_mock cable_ready_channels
45
+ assert_mock cable_ready_channel
46
+ end
47
+
48
+ test "replaces the contents of an element and ignores permanent-attributes if the selector(s) aren't present in the replacing html fragment" do
49
+ broadcaster = StimulusReflex::SelectorBroadcaster.new(@reflex)
50
+
51
+ cable_ready_channels = Minitest::Mock.new
52
+ cable_ready_channel = Minitest::Mock.new
53
+ fragment = Minitest::Mock.new
54
+ match = Minitest::Mock.new
55
+ Nokogiri::HTML.stub :fragment, fragment do
56
+ fragment.expect(:at_css, match, ["#foo"])
57
+ fragment.expect(:to_html, "<div id=\"baz\"><span>bar</span></div>")
58
+ match.expect(:present?, false)
59
+
60
+ # we need to mock `!`, because `blank?` returns
61
+ # respond_to?(:empty?) ? !!empty? : !self
62
+ match.expect(:!, true)
63
+ CableReady::Channels.stub :instance, cable_ready_channels do
64
+ broadcaster.append_morph("#foo", "<div id=\"baz\"><span>bar</span></div>")
65
+ cable_ready_channel.expect(:inner_html, nil, [{
66
+ selector: "#foo",
67
+ html: "<div id=\"baz\"><span>bar</span></div>",
68
+ stimulus_reflex: {
69
+ some: :data,
70
+ morph: :selector
71
+ }
72
+ }])
73
+ cable_ready_channels.expect(:[], cable_ready_channel, ["TestStream"])
74
+ cable_ready_channels.expect(:broadcast, nil)
75
+
76
+ broadcaster.broadcast(nil, {some: :data})
77
+ end
78
+ end
79
+
80
+ assert_mock cable_ready_channels
81
+ assert_mock cable_ready_channel
82
+ end
83
+ end
@@ -1,4 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
+ require "minitest/mock"
4
+
3
5
  ENV["RAILS_ENV"] ||= "test"
4
6
  require_relative "../lib/stimulus_reflex"
@@ -1,6 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- class UserReflex < ApplicationReflex
3
+ class PostsReflex < ApplicationReflex
4
4
  # Add Reflex methods in this file.
5
5
  #
6
6
  # All Reflex instances expose the following properties:
@@ -21,13 +21,4 @@ class UserReflex < ApplicationReflex
21
21
  # end
22
22
  #
23
23
  # Learn more at: https://docs.stimulusreflex.com
24
-
25
- def update
26
- end
27
-
28
- def do_stuff
29
- end
30
-
31
- def do_more_stuff
32
- end
33
24
  end
data/yarn.lock CHANGED
@@ -16,31 +16,31 @@
16
16
  dependencies:
17
17
  "@babel/highlight" "^7.8.3"
18
18
 
19
- "@babel/code-frame@^7.0.0", "@babel/code-frame@^7.10.4", "@babel/code-frame@^7.5.5":
19
+ "@babel/code-frame@^7.0.0", "@babel/code-frame@^7.10.4":
20
20
  version "7.10.4"
21
21
  resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.10.4.tgz#168da1a36e90da68ae8d49c0f1b48c7c6249213a"
22
22
  integrity sha512-vG6SvB6oYEhvgisZNFRmRCUkLz11c7rp+tbNTynGqc6mS1d5ATd/sGyV6W0KZZnXRKMTzZDRgQT3Ou9jhpAfUg==
23
23
  dependencies:
24
24
  "@babel/highlight" "^7.10.4"
25
25
 
26
- "@babel/compat-data@^7.12.1":
27
- version "7.12.1"
28
- resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.12.1.tgz#d7386a689aa0ddf06255005b4b991988021101a0"
29
- integrity sha512-725AQupWJZ8ba0jbKceeFblZTY90McUBWMwHhkFQ9q1zKPJ95GUktljFcgcsIVwRnTnRKlcYzfiNImg5G9m6ZQ==
26
+ "@babel/compat-data@^7.12.5", "@babel/compat-data@^7.12.7":
27
+ version "7.12.7"
28
+ resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.12.7.tgz#9329b4782a7d6bbd7eef57e11addf91ee3ef1e41"
29
+ integrity sha512-YaxPMGs/XIWtYqrdEOZOCPsVWfEoriXopnsz3/i7apYPXQ3698UFhS6dVT1KN5qOsWmVgw/FOrmQgpRaZayGsw==
30
30
 
31
- "@babel/core@^7.10.2", "@babel/core@^7.6.2":
32
- version "7.12.3"
33
- resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.12.3.tgz#1b436884e1e3bff6fb1328dc02b208759de92ad8"
34
- integrity sha512-0qXcZYKZp3/6N2jKYVxZv0aNCsxTSVCiK72DTiTYZAu7sjg73W0/aynWjMbiGd87EQL4WyA8reiJVh92AVla9g==
31
+ "@babel/core@^7.6.2":
32
+ version "7.12.9"
33
+ resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.12.9.tgz#fd450c4ec10cdbb980e2928b7aa7a28484593fc8"
34
+ integrity sha512-gTXYh3M5wb7FRXQy+FErKFAv90BnlOuNn1QkCK2lREoPAjrQCO49+HVSrFoe5uakFAF5eenS75KbO2vQiLrTMQ==
35
35
  dependencies:
36
36
  "@babel/code-frame" "^7.10.4"
37
- "@babel/generator" "^7.12.1"
37
+ "@babel/generator" "^7.12.5"
38
38
  "@babel/helper-module-transforms" "^7.12.1"
39
- "@babel/helpers" "^7.12.1"
40
- "@babel/parser" "^7.12.3"
41
- "@babel/template" "^7.10.4"
42
- "@babel/traverse" "^7.12.1"
43
- "@babel/types" "^7.12.1"
39
+ "@babel/helpers" "^7.12.5"
40
+ "@babel/parser" "^7.12.7"
41
+ "@babel/template" "^7.12.7"
42
+ "@babel/traverse" "^7.12.9"
43
+ "@babel/types" "^7.12.7"
44
44
  convert-source-map "^1.7.0"
45
45
  debug "^4.1.0"
46
46
  gensync "^1.0.0-beta.1"
@@ -50,12 +50,12 @@
50
50
  semver "^5.4.1"
51
51
  source-map "^0.5.0"
52
52
 
53
- "@babel/generator@^7.12.1":
54
- version "7.12.1"
55
- resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.12.1.tgz#0d70be32bdaa03d7c51c8597dda76e0df1f15468"
56
- integrity sha512-DB+6rafIdc9o72Yc3/Ph5h+6hUjeOp66pF0naQBgUFFuPqzQwIlPTm3xZR7YNvduIMtkDIj2t21LSQwnbCrXvg==
53
+ "@babel/generator@^7.12.5":
54
+ version "7.12.5"
55
+ resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.12.5.tgz#a2c50de5c8b6d708ab95be5e6053936c1884a4de"
56
+ integrity sha512-m16TQQJ8hPt7E+OS/XVQg/7U184MLXtvuGbCdA7na61vha+ImkyyNM/9DDA0unYCVZn3ZOhng+qz48/KBOT96A==
57
57
  dependencies:
58
- "@babel/types" "^7.12.1"
58
+ "@babel/types" "^7.12.5"
59
59
  jsesc "^2.5.1"
60
60
  source-map "^0.5.0"
61
61
 
@@ -74,34 +74,17 @@
74
74
  "@babel/helper-explode-assignable-expression" "^7.10.4"
75
75
  "@babel/types" "^7.10.4"
76
76
 
77
- "@babel/helper-builder-react-jsx-experimental@^7.12.1":
78
- version "7.12.4"
79
- resolved "https://registry.yarnpkg.com/@babel/helper-builder-react-jsx-experimental/-/helper-builder-react-jsx-experimental-7.12.4.tgz#55fc1ead5242caa0ca2875dcb8eed6d311e50f48"
80
- integrity sha512-AjEa0jrQqNk7eDQOo0pTfUOwQBMF+xVqrausQwT9/rTKy0g04ggFNaJpaE09IQMn9yExluigWMJcj0WC7bq+Og==
81
- dependencies:
82
- "@babel/helper-annotate-as-pure" "^7.10.4"
83
- "@babel/helper-module-imports" "^7.12.1"
84
- "@babel/types" "^7.12.1"
85
-
86
- "@babel/helper-builder-react-jsx@^7.10.4":
87
- version "7.10.4"
88
- resolved "https://registry.yarnpkg.com/@babel/helper-builder-react-jsx/-/helper-builder-react-jsx-7.10.4.tgz#8095cddbff858e6fa9c326daee54a2f2732c1d5d"
89
- integrity sha512-5nPcIZ7+KKDxT1427oBivl9V9YTal7qk0diccnh7RrcgrT/pGFOjgGw1dgryyx1GvHEpXVfoDF6Ak3rTiWh8Rg==
90
- dependencies:
91
- "@babel/helper-annotate-as-pure" "^7.10.4"
92
- "@babel/types" "^7.10.4"
93
-
94
- "@babel/helper-compilation-targets@^7.12.1":
95
- version "7.12.1"
96
- resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.12.1.tgz#310e352888fbdbdd8577be8dfdd2afb9e7adcf50"
97
- integrity sha512-jtBEif7jsPwP27GPHs06v4WBV0KrE8a/P7n0N0sSvHn2hwUCYnolP/CLmz51IzAW4NlN+HuoBtb9QcwnRo9F/g==
77
+ "@babel/helper-compilation-targets@^7.12.5":
78
+ version "7.12.5"
79
+ resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.12.5.tgz#cb470c76198db6a24e9dbc8987275631e5d29831"
80
+ integrity sha512-+qH6NrscMolUlzOYngSBMIOQpKUGPPsc61Bu5W10mg84LxZ7cmvnBHzARKbDoFxVvqqAbj6Tg6N7bSrWSPXMyw==
98
81
  dependencies:
99
- "@babel/compat-data" "^7.12.1"
82
+ "@babel/compat-data" "^7.12.5"
100
83
  "@babel/helper-validator-option" "^7.12.1"
101
- browserslist "^4.12.0"
84
+ browserslist "^4.14.5"
102
85
  semver "^5.5.0"
103
86
 
104
- "@babel/helper-create-class-features-plugin@^7.12.1", "@babel/helper-create-class-features-plugin@^7.7.4":
87
+ "@babel/helper-create-class-features-plugin@^7.12.1":
105
88
  version "7.12.1"
106
89
  resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.12.1.tgz#3c45998f431edd4a9214c5f1d3ad1448a6137f6e"
107
90
  integrity sha512-hkL++rWeta/OVOBTRJc9a5Azh5mt5WgZUGAKMD8JM141YsE08K//bp1unBBieO6rUKkIPyUE0USQ30jAy3Sk1w==
@@ -113,12 +96,11 @@
113
96
  "@babel/helper-split-export-declaration" "^7.10.4"
114
97
 
115
98
  "@babel/helper-create-regexp-features-plugin@^7.12.1":
116
- version "7.12.1"
117
- resolved "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.12.1.tgz#18b1302d4677f9dc4740fe8c9ed96680e29d37e8"
118
- integrity sha512-rsZ4LGvFTZnzdNZR5HZdmJVuXK8834R5QkF3WvcnBhrlVtF0HSIUC6zbreL9MgjTywhKokn8RIYRiq99+DLAxA==
99
+ version "7.12.7"
100
+ resolved "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.12.7.tgz#2084172e95443fa0a09214ba1bb328f9aea1278f"
101
+ integrity sha512-idnutvQPdpbduutvi3JVfEgcVIHooQnhvhx0Nk9isOINOIGYkZea1Pk2JlJRiUnMefrlvr0vkByATBY/mB4vjQ==
119
102
  dependencies:
120
103
  "@babel/helper-annotate-as-pure" "^7.10.4"
121
- "@babel/helper-regex" "^7.10.4"
122
104
  regexpu-core "^4.7.1"
123
105
 
124
106
  "@babel/helper-define-map@^7.10.4":
@@ -161,18 +143,18 @@
161
143
  "@babel/types" "^7.10.4"
162
144
 
163
145
  "@babel/helper-member-expression-to-functions@^7.12.1":
164
- version "7.12.1"
165
- resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.12.1.tgz#fba0f2fcff3fba00e6ecb664bb5e6e26e2d6165c"
166
- integrity sha512-k0CIe3tXUKTRSoEx1LQEPFU9vRQfqHtl+kf8eNnDqb4AUJEy5pz6aIiog+YWtVm2jpggjS1laH68bPsR+KWWPQ==
146
+ version "7.12.7"
147
+ resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.12.7.tgz#aa77bd0396ec8114e5e30787efa78599d874a855"
148
+ integrity sha512-DCsuPyeWxeHgh1Dus7APn7iza42i/qXqiFPWyBDdOFtvS581JQePsc1F/nD+fHrcswhLlRc2UpYS1NwERxZhHw==
167
149
  dependencies:
168
- "@babel/types" "^7.12.1"
150
+ "@babel/types" "^7.12.7"
169
151
 
170
- "@babel/helper-module-imports@^7.10.4", "@babel/helper-module-imports@^7.12.1":
171
- version "7.12.1"
172
- resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.12.1.tgz#1644c01591a15a2f084dd6d092d9430eb1d1216c"
173
- integrity sha512-ZeC1TlMSvikvJNy1v/wPIazCu3NdOwgYZLIkmIyAsGhqkNpiDoQQRmaCK8YP4Pq3GPTLPV9WXaPCJKvx06JxKA==
152
+ "@babel/helper-module-imports@^7.12.1", "@babel/helper-module-imports@^7.12.5":
153
+ version "7.12.5"
154
+ resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.12.5.tgz#1bfc0229f794988f76ed0a4d4e90860850b54dfb"
155
+ integrity sha512-SR713Ogqg6++uexFRORf/+nPXMmWIn80TALu0uaFb+iQIUoR7bOC7zBWyzBs5b3tBBJXuyD0cRu1F15GyzjOWA==
174
156
  dependencies:
175
- "@babel/types" "^7.12.1"
157
+ "@babel/types" "^7.12.5"
176
158
 
177
159
  "@babel/helper-module-transforms@^7.12.1":
178
160
  version "7.12.1"
@@ -190,24 +172,17 @@
190
172
  lodash "^4.17.19"
191
173
 
192
174
  "@babel/helper-optimise-call-expression@^7.10.4":
193
- version "7.10.4"
194
- resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.10.4.tgz#50dc96413d594f995a77905905b05893cd779673"
195
- integrity sha512-n3UGKY4VXwXThEiKrgRAoVPBMqeoPgHVqiHZOanAJCG9nQUL2pLRQirUzl0ioKclHGpGqRgIOkgcIJaIWLpygg==
175
+ version "7.12.7"
176
+ resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.12.7.tgz#7f94ae5e08721a49467346aa04fd22f750033b9c"
177
+ integrity sha512-I5xc9oSJ2h59OwyUqjv95HRyzxj53DAubUERgQMrpcCEYQyToeHA+NEcUEsVWB4j53RDeskeBJ0SgRAYHDBckw==
196
178
  dependencies:
197
- "@babel/types" "^7.10.4"
179
+ "@babel/types" "^7.12.7"
198
180
 
199
181
  "@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.8.0", "@babel/helper-plugin-utils@^7.8.3":
200
182
  version "7.10.4"
201
183
  resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.10.4.tgz#2f75a831269d4f677de49986dff59927533cf375"
202
184
  integrity sha512-O4KCvQA6lLiMU9l2eawBPMf1xPP8xPfB3iEQw150hOVTqj/rfXz0ThTb4HEzqQfs2Bmo5Ay8BzxfzVtBrr9dVg==
203
185
 
204
- "@babel/helper-regex@^7.10.4":
205
- version "7.10.5"
206
- resolved "https://registry.yarnpkg.com/@babel/helper-regex/-/helper-regex-7.10.5.tgz#32dfbb79899073c415557053a19bd055aae50ae0"
207
- integrity sha512-68kdUAzDrljqBrio7DYAEgCoJHxppJOERHOgOrDN7WjOzP0ZQ1LsSDRXcemzVZaLvjaJsJEESb6qt+znNuENDg==
208
- dependencies:
209
- lodash "^4.17.19"
210
-
211
186
  "@babel/helper-remap-async-to-generator@^7.12.1":
212
187
  version "7.12.1"
213
188
  resolved "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.12.1.tgz#8c4dbbf916314f6047dc05e6a2217074238347fd"
@@ -218,14 +193,14 @@
218
193
  "@babel/types" "^7.12.1"
219
194
 
220
195
  "@babel/helper-replace-supers@^7.12.1":
221
- version "7.12.1"
222
- resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.12.1.tgz#f15c9cc897439281891e11d5ce12562ac0cf3fa9"
223
- integrity sha512-zJjTvtNJnCFsCXVi5rUInstLd/EIVNmIKA1Q9ynESmMBWPWd+7sdR+G4/wdu+Mppfep0XLyG2m7EBPvjCeFyrw==
196
+ version "7.12.5"
197
+ resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.12.5.tgz#f009a17543bbbbce16b06206ae73b63d3fca68d9"
198
+ integrity sha512-5YILoed0ZyIpF4gKcpZitEnXEJ9UoDRki1Ey6xz46rxOzfNMAhVIJMoune1hmPVxh40LRv1+oafz7UsWX+vyWA==
224
199
  dependencies:
225
200
  "@babel/helper-member-expression-to-functions" "^7.12.1"
226
201
  "@babel/helper-optimise-call-expression" "^7.10.4"
227
- "@babel/traverse" "^7.12.1"
228
- "@babel/types" "^7.12.1"
202
+ "@babel/traverse" "^7.12.5"
203
+ "@babel/types" "^7.12.5"
229
204
 
230
205
  "@babel/helper-simple-access@^7.12.1":
231
206
  version "7.12.1"
@@ -268,14 +243,14 @@
268
243
  "@babel/traverse" "^7.10.4"
269
244
  "@babel/types" "^7.10.4"
270
245
 
271
- "@babel/helpers@^7.12.1":
272
- version "7.12.1"
273
- resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.12.1.tgz#8a8261c1d438ec18cb890434df4ec768734c1e79"
274
- integrity sha512-9JoDSBGoWtmbay98efmT2+mySkwjzeFeAL9BuWNoVQpkPFQF8SIIFUfY5os9u8wVzglzoiPRSW7cuJmBDUt43g==
246
+ "@babel/helpers@^7.12.5":
247
+ version "7.12.5"
248
+ resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.12.5.tgz#1a1ba4a768d9b58310eda516c449913fe647116e"
249
+ integrity sha512-lgKGMQlKqA8meJqKsW6rUnc4MdUk35Ln0ATDqdM1a/UpARODdI4j5Y5lVfUScnSNkJcdCRAaWkspykNoFg9sJA==
275
250
  dependencies:
276
251
  "@babel/template" "^7.10.4"
277
- "@babel/traverse" "^7.12.1"
278
- "@babel/types" "^7.12.1"
252
+ "@babel/traverse" "^7.12.5"
253
+ "@babel/types" "^7.12.5"
279
254
 
280
255
  "@babel/highlight@^7.10.4", "@babel/highlight@^7.8.3":
281
256
  version "7.10.4"
@@ -291,10 +266,10 @@
291
266
  resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.9.4.tgz#68a35e6b0319bbc014465be43828300113f2f2e8"
292
267
  integrity sha512-bC49otXX6N0/VYhgOMh4gnP26E9xnDZK3TmbNpxYzzz9BQLBosQwfyOe9/cXUU3txYhTzLCbcqd5c8y/OmCjHA==
293
268
 
294
- "@babel/parser@^7.10.4", "@babel/parser@^7.12.1", "@babel/parser@^7.12.3", "@babel/parser@^7.3.3":
295
- version "7.12.3"
296
- resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.12.3.tgz#a305415ebe7a6c7023b40b5122a0662d928334cd"
297
- integrity sha512-kFsOS0IbsuhO5ojF8Hc8z/8vEIOkylVBrjiZUbLTE3XFe0Qi+uu6HjzQixkFaqr0ZPAMZcBVxEwmsnsLPZ2Xsw==
269
+ "@babel/parser@^7.12.7":
270
+ version "7.12.7"
271
+ resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.12.7.tgz#fee7b39fe809d0e73e5b25eecaf5780ef3d73056"
272
+ integrity sha512-oWR02Ubp4xTLCAqPRiNIuMVgNO5Aif/xpXtabhzW2HWUD47XJsAB4Zd/Rg30+XeQA3juXigV7hlquOTmwqLiwg==
298
273
 
299
274
  "@babel/plugin-proposal-async-generator-functions@^7.12.1":
300
275
  version "7.12.1"
@@ -305,14 +280,6 @@
305
280
  "@babel/helper-remap-async-to-generator" "^7.12.1"
306
281
  "@babel/plugin-syntax-async-generators" "^7.8.0"
307
282
 
308
- "@babel/plugin-proposal-class-properties@7.7.4":
309
- version "7.7.4"
310
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.7.4.tgz#2f964f0cb18b948450362742e33e15211e77c2ba"
311
- integrity sha512-EcuXeV4Hv1X3+Q1TsuOmyyxeTRiSqurGJ26+I/FW1WbymmRRapVORm6x1Zl3iDIHyRxEs+VXWp6qnlcfcJSbbw==
312
- dependencies:
313
- "@babel/helper-create-class-features-plugin" "^7.7.4"
314
- "@babel/helper-plugin-utils" "^7.0.0"
315
-
316
283
  "@babel/plugin-proposal-class-properties@^7.12.1":
317
284
  version "7.12.1"
318
285
  resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.12.1.tgz#a082ff541f2a29a4821065b8add9346c0c16e5de"
@@ -361,10 +328,10 @@
361
328
  "@babel/helper-plugin-utils" "^7.10.4"
362
329
  "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.0"
363
330
 
364
- "@babel/plugin-proposal-numeric-separator@^7.12.1":
365
- version "7.12.1"
366
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.12.1.tgz#0e2c6774c4ce48be412119b4d693ac777f7685a6"
367
- integrity sha512-MR7Ok+Af3OhNTCxYVjJZHS0t97ydnJZt/DbR4WISO39iDnhiD8XHrY12xuSJ90FFEGjir0Fzyyn7g/zY6hxbxA==
331
+ "@babel/plugin-proposal-numeric-separator@^7.12.7":
332
+ version "7.12.7"
333
+ resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.12.7.tgz#8bf253de8139099fea193b297d23a9d406ef056b"
334
+ integrity sha512-8c+uy0qmnRTeukiGsjLGy6uVs/TFjJchGXUeBqlG4VWYOdJWkhhVPdQ3uHwbmalfJwv2JsV0qffXP4asRfL2SQ==
368
335
  dependencies:
369
336
  "@babel/helper-plugin-utils" "^7.10.4"
370
337
  "@babel/plugin-syntax-numeric-separator" "^7.10.4"
@@ -386,10 +353,10 @@
386
353
  "@babel/helper-plugin-utils" "^7.10.4"
387
354
  "@babel/plugin-syntax-optional-catch-binding" "^7.8.0"
388
355
 
389
- "@babel/plugin-proposal-optional-chaining@^7.12.1":
390
- version "7.12.1"
391
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.12.1.tgz#cce122203fc8a32794296fc377c6dedaf4363797"
392
- integrity sha512-c2uRpY6WzaVDzynVY9liyykS+kVU+WRZPMPYpkelXH8KBt1oXoI89kPbZKKG/jDT5UK92FTW2fZkZaJhdiBabw==
356
+ "@babel/plugin-proposal-optional-chaining@^7.12.7":
357
+ version "7.12.7"
358
+ resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.12.7.tgz#e02f0ea1b5dc59d401ec16fb824679f683d3303c"
359
+ integrity sha512-4ovylXZ0PWmwoOvhU2vhnzVNnm88/Sm9nx7V8BPgMvAzn5zDou3/Awy0EjglyubVHasJj+XCEkr/r1X3P5elCA==
393
360
  dependencies:
394
361
  "@babel/helper-plugin-utils" "^7.10.4"
395
362
  "@babel/helper-skip-transparent-expression-wrappers" "^7.12.1"
@@ -439,20 +406,6 @@
439
406
  dependencies:
440
407
  "@babel/helper-plugin-utils" "^7.8.3"
441
408
 
442
- "@babel/plugin-syntax-flow@^7.12.1":
443
- version "7.12.1"
444
- resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.12.1.tgz#a77670d9abe6d63e8acadf4c31bb1eb5a506bbdd"
445
- integrity sha512-1lBLLmtxrwpm4VKmtVFselI/P3pX+G63fAtUUt6b2Nzgao77KNDwyuRt90Mj2/9pKobtt68FdvjfqohZjg/FCA==
446
- dependencies:
447
- "@babel/helper-plugin-utils" "^7.10.4"
448
-
449
- "@babel/plugin-syntax-import-meta@^7.10.1":
450
- version "7.10.4"
451
- resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz#ee601348c370fa334d2207be158777496521fd51"
452
- integrity sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==
453
- dependencies:
454
- "@babel/helper-plugin-utils" "^7.10.4"
455
-
456
409
  "@babel/plugin-syntax-json-strings@^7.8.0":
457
410
  version "7.8.3"
458
411
  resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz#01ca21b668cd8218c9e640cb6dd88c5412b2c96a"
@@ -460,13 +413,6 @@
460
413
  dependencies:
461
414
  "@babel/helper-plugin-utils" "^7.8.0"
462
415
 
463
- "@babel/plugin-syntax-jsx@^7.10.1", "@babel/plugin-syntax-jsx@^7.12.1":
464
- version "7.12.1"
465
- resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.12.1.tgz#9d9d357cc818aa7ae7935917c1257f67677a0926"
466
- integrity sha512-1yRi7yAtB0ETgxdY9ti/p2TivUxJkTdhu/ZbF9MshVGqOx1TdB3b7xCXs49Fupgg50N45KcAsRP/ZqWjs9SRjg==
467
- dependencies:
468
- "@babel/helper-plugin-utils" "^7.10.4"
469
-
470
416
  "@babel/plugin-syntax-logical-assignment-operators@^7.10.4":
471
417
  version "7.10.4"
472
418
  resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz#ca91ef46303530448b906652bac2e9fe9941f699"
@@ -597,14 +543,6 @@
597
543
  "@babel/helper-builder-binary-assignment-operator-visitor" "^7.10.4"
598
544
  "@babel/helper-plugin-utils" "^7.10.4"
599
545
 
600
- "@babel/plugin-transform-flow-strip-types@^7.10.1", "@babel/plugin-transform-flow-strip-types@^7.12.1":
601
- version "7.12.1"
602
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.12.1.tgz#8430decfa7eb2aea5414ed4a3fa6e1652b7d77c4"
603
- integrity sha512-8hAtkmsQb36yMmEtk2JZ9JnVyDSnDOdlB+0nEGzIDLuK4yR3JcEjfuFPYkdEPSh8Id+rAMeBEn+X0iVEyho6Hg==
604
- dependencies:
605
- "@babel/helper-plugin-utils" "^7.10.4"
606
- "@babel/plugin-syntax-flow" "^7.12.1"
607
-
608
546
  "@babel/plugin-transform-for-of@^7.12.1":
609
547
  version "7.12.1"
610
548
  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.12.1.tgz#07640f28867ed16f9511c99c888291f560921cfa"
@@ -708,55 +646,7 @@
708
646
  dependencies:
709
647
  "@babel/helper-plugin-utils" "^7.10.4"
710
648
 
711
- "@babel/plugin-transform-react-display-name@^7.12.1":
712
- version "7.12.1"
713
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.12.1.tgz#1cbcd0c3b1d6648c55374a22fc9b6b7e5341c00d"
714
- integrity sha512-cAzB+UzBIrekfYxyLlFqf/OagTvHLcVBb5vpouzkYkBclRPraiygVnafvAoipErZLI8ANv8Ecn6E/m5qPXD26w==
715
- dependencies:
716
- "@babel/helper-plugin-utils" "^7.10.4"
717
-
718
- "@babel/plugin-transform-react-jsx-development@^7.12.1":
719
- version "7.12.1"
720
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.12.1.tgz#0b8f8cd531dcf7991f1e5f2c10a2a4f1cfc78e36"
721
- integrity sha512-IilcGWdN1yNgEGOrB96jbTplRh+V2Pz1EoEwsKsHfX1a/L40cUYuD71Zepa7C+ujv7kJIxnDftWeZbKNEqZjCQ==
722
- dependencies:
723
- "@babel/helper-builder-react-jsx-experimental" "^7.12.1"
724
- "@babel/helper-plugin-utils" "^7.10.4"
725
- "@babel/plugin-syntax-jsx" "^7.12.1"
726
-
727
- "@babel/plugin-transform-react-jsx-self@^7.12.1":
728
- version "7.12.1"
729
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.12.1.tgz#ef43cbca2a14f1bd17807dbe4376ff89d714cf28"
730
- integrity sha512-FbpL0ieNWiiBB5tCldX17EtXgmzeEZjFrix72rQYeq9X6nUK38HCaxexzVQrZWXanxKJPKVVIU37gFjEQYkPkA==
731
- dependencies:
732
- "@babel/helper-plugin-utils" "^7.10.4"
733
-
734
- "@babel/plugin-transform-react-jsx-source@^7.12.1":
735
- version "7.12.1"
736
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.12.1.tgz#d07de6863f468da0809edcf79a1aa8ce2a82a26b"
737
- integrity sha512-keQ5kBfjJNRc6zZN1/nVHCd6LLIHq4aUKcVnvE/2l+ZZROSbqoiGFRtT5t3Is89XJxBQaP7NLZX2jgGHdZvvFQ==
738
- dependencies:
739
- "@babel/helper-plugin-utils" "^7.10.4"
740
-
741
- "@babel/plugin-transform-react-jsx@^7.10.1", "@babel/plugin-transform-react-jsx@^7.12.1":
742
- version "7.12.1"
743
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.12.1.tgz#c2d96c77c2b0e4362cc4e77a43ce7c2539d478cb"
744
- integrity sha512-RmKejwnT0T0QzQUzcbP5p1VWlpnP8QHtdhEtLG55ZDQnJNalbF3eeDyu3dnGKvGzFIQiBzFhBYTwvv435p9Xpw==
745
- dependencies:
746
- "@babel/helper-builder-react-jsx" "^7.10.4"
747
- "@babel/helper-builder-react-jsx-experimental" "^7.12.1"
748
- "@babel/helper-plugin-utils" "^7.10.4"
749
- "@babel/plugin-syntax-jsx" "^7.12.1"
750
-
751
- "@babel/plugin-transform-react-pure-annotations@^7.12.1":
752
- version "7.12.1"
753
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-pure-annotations/-/plugin-transform-react-pure-annotations-7.12.1.tgz#05d46f0ab4d1339ac59adf20a1462c91b37a1a42"
754
- integrity sha512-RqeaHiwZtphSIUZ5I85PEH19LOSzxfuEazoY7/pWASCAIBuATQzpSVD+eT6MebeeZT2F4eSL0u4vw6n4Nm0Mjg==
755
- dependencies:
756
- "@babel/helper-annotate-as-pure" "^7.10.4"
757
- "@babel/helper-plugin-utils" "^7.10.4"
758
-
759
- "@babel/plugin-transform-regenerator@^7.10.1", "@babel/plugin-transform-regenerator@^7.12.1":
649
+ "@babel/plugin-transform-regenerator@^7.12.1":
760
650
  version "7.12.1"
761
651
  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.12.1.tgz#5f0a28d842f6462281f06a964e88ba8d7ab49753"
762
652
  integrity sha512-gYrHqs5itw6i4PflFX3OdBPMQdPbF4bj2REIUxlMRUFk0/ZOAIpDFuViuxPjUL7YC8UPnf+XG7/utJvqXdPKng==
@@ -785,13 +675,12 @@
785
675
  "@babel/helper-plugin-utils" "^7.10.4"
786
676
  "@babel/helper-skip-transparent-expression-wrappers" "^7.12.1"
787
677
 
788
- "@babel/plugin-transform-sticky-regex@^7.12.1":
789
- version "7.12.1"
790
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.12.1.tgz#5c24cf50de396d30e99afc8d1c700e8bce0f5caf"
791
- integrity sha512-CiUgKQ3AGVk7kveIaPEET1jNDhZZEl1RPMWdTBE1799bdz++SwqDHStmxfCtDfBhQgCl38YRiSnrMuUMZIWSUQ==
678
+ "@babel/plugin-transform-sticky-regex@^7.12.7":
679
+ version "7.12.7"
680
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.12.7.tgz#560224613ab23987453948ed21d0b0b193fa7fad"
681
+ integrity sha512-VEiqZL5N/QvDbdjfYQBhruN0HYjSPjC4XkeqW4ny/jNtH9gcbgaqBIXYEZCNnESMAGs0/K/R7oFGMhOyu/eIxg==
792
682
  dependencies:
793
683
  "@babel/helper-plugin-utils" "^7.10.4"
794
- "@babel/helper-regex" "^7.10.4"
795
684
 
796
685
  "@babel/plugin-transform-template-literals@^7.12.1":
797
686
  version "7.12.1"
@@ -822,14 +711,14 @@
822
711
  "@babel/helper-create-regexp-features-plugin" "^7.12.1"
823
712
  "@babel/helper-plugin-utils" "^7.10.4"
824
713
 
825
- "@babel/preset-env@^7.11.0", "@babel/preset-env@^7.6.2":
826
- version "7.12.1"
827
- resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.12.1.tgz#9c7e5ca82a19efc865384bb4989148d2ee5d7ac2"
828
- integrity sha512-H8kxXmtPaAGT7TyBvSSkoSTUK6RHh61So05SyEbpmr0MCZrsNYn7mGMzzeYoOUCdHzww61k8XBft2TaES+xPLg==
714
+ "@babel/preset-env@^7.6.2":
715
+ version "7.12.7"
716
+ resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.12.7.tgz#54ea21dbe92caf6f10cb1a0a576adc4ebf094b55"
717
+ integrity sha512-OnNdfAr1FUQg7ksb7bmbKoby4qFOHw6DKWWUNB9KqnnCldxhxJlP+21dpyaWFmf2h0rTbOkXJtAGevY3XW1eew==
829
718
  dependencies:
830
- "@babel/compat-data" "^7.12.1"
831
- "@babel/helper-compilation-targets" "^7.12.1"
832
- "@babel/helper-module-imports" "^7.12.1"
719
+ "@babel/compat-data" "^7.12.7"
720
+ "@babel/helper-compilation-targets" "^7.12.5"
721
+ "@babel/helper-module-imports" "^7.12.5"
833
722
  "@babel/helper-plugin-utils" "^7.10.4"
834
723
  "@babel/helper-validator-option" "^7.12.1"
835
724
  "@babel/plugin-proposal-async-generator-functions" "^7.12.1"
@@ -839,10 +728,10 @@
839
728
  "@babel/plugin-proposal-json-strings" "^7.12.1"
840
729
  "@babel/plugin-proposal-logical-assignment-operators" "^7.12.1"
841
730
  "@babel/plugin-proposal-nullish-coalescing-operator" "^7.12.1"
842
- "@babel/plugin-proposal-numeric-separator" "^7.12.1"
731
+ "@babel/plugin-proposal-numeric-separator" "^7.12.7"
843
732
  "@babel/plugin-proposal-object-rest-spread" "^7.12.1"
844
733
  "@babel/plugin-proposal-optional-catch-binding" "^7.12.1"
845
- "@babel/plugin-proposal-optional-chaining" "^7.12.1"
734
+ "@babel/plugin-proposal-optional-chaining" "^7.12.7"
846
735
  "@babel/plugin-proposal-private-methods" "^7.12.1"
847
736
  "@babel/plugin-proposal-unicode-property-regex" "^7.12.1"
848
737
  "@babel/plugin-syntax-async-generators" "^7.8.0"
@@ -884,24 +773,16 @@
884
773
  "@babel/plugin-transform-reserved-words" "^7.12.1"
885
774
  "@babel/plugin-transform-shorthand-properties" "^7.12.1"
886
775
  "@babel/plugin-transform-spread" "^7.12.1"
887
- "@babel/plugin-transform-sticky-regex" "^7.12.1"
776
+ "@babel/plugin-transform-sticky-regex" "^7.12.7"
888
777
  "@babel/plugin-transform-template-literals" "^7.12.1"
889
778
  "@babel/plugin-transform-typeof-symbol" "^7.12.1"
890
779
  "@babel/plugin-transform-unicode-escapes" "^7.12.1"
891
780
  "@babel/plugin-transform-unicode-regex" "^7.12.1"
892
781
  "@babel/preset-modules" "^0.1.3"
893
- "@babel/types" "^7.12.1"
894
- core-js-compat "^3.6.2"
782
+ "@babel/types" "^7.12.7"
783
+ core-js-compat "^3.7.0"
895
784
  semver "^5.5.0"
896
785
 
897
- "@babel/preset-flow@^7.10.1":
898
- version "7.12.1"
899
- resolved "https://registry.yarnpkg.com/@babel/preset-flow/-/preset-flow-7.12.1.tgz#1a81d376c5a9549e75352a3888f8c273455ae940"
900
- integrity sha512-UAoyMdioAhM6H99qPoKvpHMzxmNVXno8GYU/7vZmGaHk6/KqfDYL1W0NxszVbJ2EP271b7e6Ox+Vk2A9QsB3Sw==
901
- dependencies:
902
- "@babel/helper-plugin-utils" "^7.10.4"
903
- "@babel/plugin-transform-flow-strip-types" "^7.12.1"
904
-
905
786
  "@babel/preset-modules@^0.1.3":
906
787
  version "0.1.4"
907
788
  resolved "https://registry.yarnpkg.com/@babel/preset-modules/-/preset-modules-0.1.4.tgz#362f2b68c662842970fdb5e254ffc8fc1c2e415e"
@@ -913,19 +794,6 @@
913
794
  "@babel/types" "^7.4.4"
914
795
  esutils "^2.0.2"
915
796
 
916
- "@babel/preset-react@^7.10.4":
917
- version "7.12.1"
918
- resolved "https://registry.yarnpkg.com/@babel/preset-react/-/preset-react-7.12.1.tgz#7f022b13f55b6dd82f00f16d1c599ae62985358c"
919
- integrity sha512-euCExymHCi0qB9u5fKw7rvlw7AZSjw/NaB9h7EkdTt5+yHRrXdiRTh7fkG3uBPpJg82CqLfp1LHLqWGSCrab+g==
920
- dependencies:
921
- "@babel/helper-plugin-utils" "^7.10.4"
922
- "@babel/plugin-transform-react-display-name" "^7.12.1"
923
- "@babel/plugin-transform-react-jsx" "^7.12.1"
924
- "@babel/plugin-transform-react-jsx-development" "^7.12.1"
925
- "@babel/plugin-transform-react-jsx-self" "^7.12.1"
926
- "@babel/plugin-transform-react-jsx-source" "^7.12.1"
927
- "@babel/plugin-transform-react-pure-annotations" "^7.12.1"
928
-
929
797
  "@babel/register@^7.6.2":
930
798
  version "7.12.1"
931
799
  resolved "https://registry.yarnpkg.com/@babel/register/-/register-7.12.1.tgz#cdb087bdfc4f7241c03231f22e15d211acf21438"
@@ -937,41 +805,41 @@
937
805
  pirates "^4.0.0"
938
806
  source-map-support "^0.5.16"
939
807
 
940
- "@babel/runtime@^7.7.2", "@babel/runtime@^7.8.4", "@babel/runtime@^7.8.7":
941
- version "7.12.1"
942
- resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.12.1.tgz#b4116a6b6711d010b2dad3b7b6e43bf1b9954740"
943
- integrity sha512-J5AIf3vPj3UwXaAzb5j1xM4WAQDX3EMgemF8rjCP3SoW09LfRKAXQKt6CoVYl230P6iWdRcBbnLDDdnqWxZSCA==
808
+ "@babel/runtime@^7.8.4", "@babel/runtime@^7.8.7":
809
+ version "7.12.5"
810
+ resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.12.5.tgz#410e7e487441e1b360c29be715d870d9b985882e"
811
+ integrity sha512-plcc+hbExy3McchJCEQG3knOsuh3HH+Prx1P6cLIkET/0dLuQDEnrT+s27Axgc9bqfsmNUNHfscgMUdBpC9xfg==
944
812
  dependencies:
945
813
  regenerator-runtime "^0.13.4"
946
814
 
947
- "@babel/template@^7.10.4":
948
- version "7.10.4"
949
- resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.10.4.tgz#3251996c4200ebc71d1a8fc405fba940f36ba278"
950
- integrity sha512-ZCjD27cGJFUB6nmCB1Enki3r+L5kJveX9pq1SvAUKoICy6CZ9yD8xO086YXdYhvNjBdnekm4ZnaP5yC8Cs/1tA==
815
+ "@babel/template@^7.10.4", "@babel/template@^7.12.7":
816
+ version "7.12.7"
817
+ resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.12.7.tgz#c817233696018e39fbb6c491d2fb684e05ed43bc"
818
+ integrity sha512-GkDzmHS6GV7ZeXfJZ0tLRBhZcMcY0/Lnb+eEbXDBfCAcZCjrZKe6p3J4we/D24O9Y8enxWAg1cWwof59yLh2ow==
951
819
  dependencies:
952
820
  "@babel/code-frame" "^7.10.4"
953
- "@babel/parser" "^7.10.4"
954
- "@babel/types" "^7.10.4"
821
+ "@babel/parser" "^7.12.7"
822
+ "@babel/types" "^7.12.7"
955
823
 
956
- "@babel/traverse@^7.10.4", "@babel/traverse@^7.12.1":
957
- version "7.12.1"
958
- resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.12.1.tgz#941395e0c5cc86d5d3e75caa095d3924526f0c1e"
959
- integrity sha512-MA3WPoRt1ZHo2ZmoGKNqi20YnPt0B1S0GTZEPhhd+hw2KGUzBlHuVunj6K4sNuK+reEvyiPwtp0cpaqLzJDmAw==
824
+ "@babel/traverse@^7.10.4", "@babel/traverse@^7.12.1", "@babel/traverse@^7.12.5", "@babel/traverse@^7.12.9":
825
+ version "7.12.9"
826
+ resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.12.9.tgz#fad26c972eabbc11350e0b695978de6cc8e8596f"
827
+ integrity sha512-iX9ajqnLdoU1s1nHt36JDI9KG4k+vmI8WgjK5d+aDTwQbL2fUnzedNedssA645Ede3PM2ma1n8Q4h2ohwXgMXw==
960
828
  dependencies:
961
829
  "@babel/code-frame" "^7.10.4"
962
- "@babel/generator" "^7.12.1"
830
+ "@babel/generator" "^7.12.5"
963
831
  "@babel/helper-function-name" "^7.10.4"
964
832
  "@babel/helper-split-export-declaration" "^7.11.0"
965
- "@babel/parser" "^7.12.1"
966
- "@babel/types" "^7.12.1"
833
+ "@babel/parser" "^7.12.7"
834
+ "@babel/types" "^7.12.7"
967
835
  debug "^4.1.0"
968
836
  globals "^11.1.0"
969
837
  lodash "^4.17.19"
970
838
 
971
- "@babel/types@^7.10.4", "@babel/types@^7.10.5", "@babel/types@^7.11.0", "@babel/types@^7.12.1", "@babel/types@^7.4.4":
972
- version "7.12.1"
973
- resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.12.1.tgz#e109d9ab99a8de735be287ee3d6a9947a190c4ae"
974
- integrity sha512-BzSY3NJBKM4kyatSOWh3D/JJ2O3CVzBybHWxtgxnggaxEuaSTTDqeiSb/xk9lrkw2Tbqyivw5ZU4rT+EfznQsA==
839
+ "@babel/types@^7.10.4", "@babel/types@^7.10.5", "@babel/types@^7.11.0", "@babel/types@^7.12.1", "@babel/types@^7.12.5", "@babel/types@^7.12.7", "@babel/types@^7.4.4":
840
+ version "7.12.7"
841
+ resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.12.7.tgz#6039ff1e242640a29452c9ae572162ec9a8f5d13"
842
+ integrity sha512-MNyI92qZq6jrQkXvtIiykvl4WtoRrVV9MPn+ZfsoEENjiWcBQ3ZSHrkxnJWgWtLX3XXqX5hrSQ+X69wkmesXuQ==
975
843
  dependencies:
976
844
  "@babel/helper-validator-identifier" "^7.10.4"
977
845
  lodash "^4.17.19"
@@ -1023,65 +891,10 @@
1023
891
  "@nodelib/fs.scandir" "2.1.3"
1024
892
  fastq "^1.6.0"
1025
893
 
1026
- "@rails/actioncable@^6.0.3-3":
1027
- version "6.0.3-4"
1028
- resolved "https://registry.yarnpkg.com/@rails/actioncable/-/actioncable-6.0.3-4.tgz#f17c0ef2235d1624d6052b749005608260bd55ef"
1029
- integrity sha512-uie5McTpl69vHnXCVzKj7iYpVKFfLuE7aqul/I7MX5zVd+yVyyC/g75T1Q10GofyqHYNYWgPiIxgQIoYPyyeKw==
1030
-
1031
- "@rollup/plugin-alias@^3.1.1":
1032
- version "3.1.1"
1033
- resolved "https://registry.yarnpkg.com/@rollup/plugin-alias/-/plugin-alias-3.1.1.tgz#bb96cf37fefeb0a953a6566c284855c7d1cd290c"
1034
- integrity sha512-hNcQY4bpBUIvxekd26DBPgF7BT4mKVNDF5tBG4Zi+3IgwLxGYRY0itHs9D0oLVwXM5pvJDWJlBQro+au8WaUWw==
1035
- dependencies:
1036
- slash "^3.0.0"
1037
-
1038
- "@rollup/plugin-babel@^5.0.3":
1039
- version "5.2.1"
1040
- resolved "https://registry.yarnpkg.com/@rollup/plugin-babel/-/plugin-babel-5.2.1.tgz#20fc8f8864dc0eaa1c5578408459606808f72924"
1041
- integrity sha512-Jd7oqFR2dzZJ3NWANDyBjwTtX/lYbZpVcmkHrfQcpvawHs9E4c0nYk5U2mfZ6I/DZcIvy506KZJi54XK/jxH7A==
1042
- dependencies:
1043
- "@babel/helper-module-imports" "^7.10.4"
1044
- "@rollup/pluginutils" "^3.1.0"
1045
-
1046
- "@rollup/plugin-commonjs@^13.0.0":
1047
- version "13.0.2"
1048
- resolved "https://registry.yarnpkg.com/@rollup/plugin-commonjs/-/plugin-commonjs-13.0.2.tgz#b7783f0db049450c72d60bc06cf48d4951515e58"
1049
- integrity sha512-9JXf2k8xqvMYfqmhgtB6eCgMN9fbxwF1XDF3mGKJc6pkAmt0jnsqurxQ0tC1akQKNSXCm7c3unQxa3zuxtZ7mQ==
1050
- dependencies:
1051
- "@rollup/pluginutils" "^3.0.8"
1052
- commondir "^1.0.1"
1053
- estree-walker "^1.0.1"
1054
- glob "^7.1.2"
1055
- is-reference "^1.1.2"
1056
- magic-string "^0.25.2"
1057
- resolve "^1.11.0"
1058
-
1059
- "@rollup/plugin-json@^4.1.0":
1060
- version "4.1.0"
1061
- resolved "https://registry.yarnpkg.com/@rollup/plugin-json/-/plugin-json-4.1.0.tgz#54e09867ae6963c593844d8bd7a9c718294496f3"
1062
- integrity sha512-yfLbTdNS6amI/2OpmbiBoW12vngr5NW2jCJVZSBEz+H5KfUJZ2M7sDjk0U6GOOdCWFVScShte29o9NezJ53TPw==
1063
- dependencies:
1064
- "@rollup/pluginutils" "^3.0.8"
1065
-
1066
- "@rollup/plugin-node-resolve@^6.1.0":
1067
- version "6.1.0"
1068
- resolved "https://registry.yarnpkg.com/@rollup/plugin-node-resolve/-/plugin-node-resolve-6.1.0.tgz#0d2909f4bf606ae34d43a9bc8be06a9b0c850cf0"
1069
- integrity sha512-Cv7PDIvxdE40SWilY5WgZpqfIUEaDxFxs89zCAHjqyRwlTSuql4M5hjIuc5QYJkOH0/vyiyNXKD72O+LhRipGA==
1070
- dependencies:
1071
- "@rollup/pluginutils" "^3.0.0"
1072
- "@types/resolve" "0.0.8"
1073
- builtin-modules "^3.1.0"
1074
- is-module "^1.0.0"
1075
- resolve "^1.11.1"
1076
-
1077
- "@rollup/pluginutils@^3.0.0", "@rollup/pluginutils@^3.0.8", "@rollup/pluginutils@^3.1.0":
1078
- version "3.1.0"
1079
- resolved "https://registry.yarnpkg.com/@rollup/pluginutils/-/pluginutils-3.1.0.tgz#706b4524ee6dc8b103b3c995533e5ad680c02b9b"
1080
- integrity sha512-GksZ6pr6TpIjHm8h9lSQ8pi8BE9VeubNT0OMJ3B5uZJ8pz73NPiqOtCog/x2/QzM1ENChPKxMDhiQuRHsqc+lg==
1081
- dependencies:
1082
- "@types/estree" "0.0.39"
1083
- estree-walker "^1.0.1"
1084
- picomatch "^2.2.2"
894
+ "@rails/actioncable@>= 6.0":
895
+ version "6.0.3"
896
+ resolved "https://registry.yarnpkg.com/@rails/actioncable/-/actioncable-6.0.3.tgz#722b4b639936129307ddbab3a390f6bcacf3e7bc"
897
+ integrity sha512-I01hgqxxnOgOtJTGlq0ZsGJYiTEEiSGVEGQn3vimZSqEP1HqzyFNbzGTq14Xdyeow2yGJjygjoFF1pmtE+SQaw==
1085
898
 
1086
899
  "@samverschueren/stream-to-observable@^0.3.0":
1087
900
  version "0.3.1"
@@ -1114,16 +927,6 @@
1114
927
  resolved "https://registry.yarnpkg.com/@stimulus/webpack-helpers/-/webpack-helpers-1.1.1.tgz#eff60cd4e58b921d1a2764dc5215f5141510f2c2"
1115
928
  integrity sha512-XOkqSw53N9072FLHvpLM25PIwy+ndkSSbnTtjKuyzsv8K5yfkFB2rv68jU1pzqYa9FZLcvZWP4yazC0V38dx9A==
1116
929
 
1117
- "@types/estree@*":
1118
- version "0.0.45"
1119
- resolved "https://registry.yarnpkg.com/@types/estree/-/estree-0.0.45.tgz#e9387572998e5ecdac221950dab3e8c3b16af884"
1120
- integrity sha512-jnqIUKDUqJbDIUxm0Uj7bnlMnRm1T/eZ9N+AVMqhPgzrba2GhGG5o/jCTwmdPK709nEZsGoMzXEDUjcXHa3W0g==
1121
-
1122
- "@types/estree@0.0.39":
1123
- version "0.0.39"
1124
- resolved "https://registry.yarnpkg.com/@types/estree/-/estree-0.0.39.tgz#e177e699ee1b8c22d23174caaa7422644389509f"
1125
- integrity sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw==
1126
-
1127
930
  "@types/glob@^7.1.1":
1128
931
  version "7.1.3"
1129
932
  resolved "https://registry.yarnpkg.com/@types/glob/-/glob-7.1.3.tgz#e6ba80f36b7daad2c685acd9266382e68985c183"
@@ -1138,26 +941,9 @@
1138
941
  integrity sha512-tHq6qdbT9U1IRSGf14CL0pUlULksvY9OZ+5eEgl1N7t+OA3tGvNpxJCzuKQlsNgCVwbAs670L1vcVQi8j9HjnA==
1139
942
 
1140
943
  "@types/node@*":
1141
- version "14.14.5"
1142
- resolved "https://registry.yarnpkg.com/@types/node/-/node-14.14.5.tgz#e92d3b8f76583efa26c1a63a21c9d3c1143daa29"
1143
- integrity sha512-H5Wn24s/ZOukBmDn03nnGTp18A60ny9AmCwnEcgJiTgSGsCO7k+NWP7zjCCbhlcnVCoI+co52dUAt9GMhOSULw==
1144
-
1145
- "@types/parse-json@^4.0.0":
1146
- version "4.0.0"
1147
- resolved "https://registry.yarnpkg.com/@types/parse-json/-/parse-json-4.0.0.tgz#2f8bb441434d163b35fb8ffdccd7138927ffb8c0"
1148
- integrity sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==
1149
-
1150
- "@types/q@^1.5.1":
1151
- version "1.5.4"
1152
- resolved "https://registry.yarnpkg.com/@types/q/-/q-1.5.4.tgz#15925414e0ad2cd765bfef58842f7e26a7accb24"
1153
- integrity sha512-1HcDas8SEj4z1Wc696tH56G8OlRaH/sqZOynNNB+HF0WOeXPaxTtbYzJY2oEfiUxjSKjhCKr+MvR7dCHcEelug==
1154
-
1155
- "@types/resolve@0.0.8":
1156
- version "0.0.8"
1157
- resolved "https://registry.yarnpkg.com/@types/resolve/-/resolve-0.0.8.tgz#f26074d238e02659e323ce1a13d041eee280e194"
1158
- integrity sha512-auApPaJf3NPfe18hSoJkp8EbZzer2ISk7o8mCC3M9he/a04+gbMF97NkpD2S8riMGvm4BMRI59/SZQSaLTKpsQ==
1159
- dependencies:
1160
- "@types/node" "*"
944
+ version "14.14.10"
945
+ resolved "https://registry.yarnpkg.com/@types/node/-/node-14.14.10.tgz#5958a82e41863cfc71f2307b3748e3491ba03785"
946
+ integrity sha512-J32dgx2hw8vXrSbu4ZlVhn1Nm3GbeCFNw2FWL8S5QKucHGY0cyNwjdQdO+KMBZ4wpmC7KhLCiNsdk1RFRIYUQQ==
1161
947
 
1162
948
  "@types/unist@^2.0.0", "@types/unist@^2.0.2":
1163
949
  version "2.0.3"
@@ -1204,7 +990,7 @@ acorn-walk@^7.1.1:
1204
990
  resolved "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-7.2.0.tgz#0de889a601203909b0fbe07b8938dc21d2e967bc"
1205
991
  integrity sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==
1206
992
 
1207
- acorn@^7.1.0, acorn@^7.1.1:
993
+ acorn@^7.1.1:
1208
994
  version "7.4.1"
1209
995
  resolved "https://registry.yarnpkg.com/acorn/-/acorn-7.4.1.tgz#feaed255973d2e77555b83dbc08851a6c63520fa"
1210
996
  integrity sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==
@@ -1227,11 +1013,6 @@ ajv@^6.10.0, ajv@^6.10.2, ajv@^6.12.3:
1227
1013
  json-schema-traverse "^0.4.1"
1228
1014
  uri-js "^4.2.2"
1229
1015
 
1230
- alphanum-sort@^1.0.0:
1231
- version "1.0.2"
1232
- resolved "https://registry.yarnpkg.com/alphanum-sort/-/alphanum-sort-1.0.2.tgz#97a1119649b211ad33691d9f9f486a8ec9fbe0a3"
1233
- integrity sha1-l6ERlkmyEa0zaR2fn0hqjsn74KM=
1234
-
1235
1016
  angular-estree-parser@1.3.1:
1236
1017
  version "1.3.1"
1237
1018
  resolved "https://registry.yarnpkg.com/angular-estree-parser/-/angular-estree-parser-1.3.1.tgz#5b590c3ef431fccb512755eea563029f84c043ee"
@@ -1387,24 +1168,6 @@ asynckit@^0.4.0:
1387
1168
  resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79"
1388
1169
  integrity sha1-x57Zf380y48robyXkLzDZkdLS3k=
1389
1170
 
1390
- asyncro@^3.0.0:
1391
- version "3.0.0"
1392
- resolved "https://registry.yarnpkg.com/asyncro/-/asyncro-3.0.0.tgz#3c7a732e263bc4a42499042f48d7d858e9c0134e"
1393
- integrity sha512-nEnWYfrBmA3taTiuiOoZYmgJ/CNrSoQLeLs29SeLcPu60yaw/mHDBHV0iOZ051fTvsTHxpCY+gXibqT9wbQYfg==
1394
-
1395
- autoprefixer@^9.8.0:
1396
- version "9.8.6"
1397
- resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-9.8.6.tgz#3b73594ca1bf9266320c5acf1588d74dea74210f"
1398
- integrity sha512-XrvP4VVHdRBCdX1S3WXVD8+RyG9qeb1D5Sn1DeLiG2xfSpzellk5k54xbUERJ3M5DggQxes39UGOTP8CFrEGbg==
1399
- dependencies:
1400
- browserslist "^4.12.0"
1401
- caniuse-lite "^1.0.30001109"
1402
- colorette "^1.2.1"
1403
- normalize-range "^0.1.2"
1404
- num2fraction "^1.2.2"
1405
- postcss "^7.0.32"
1406
- postcss-value-parser "^4.1.0"
1407
-
1408
1171
  available-typed-arrays@^1.0.0, available-typed-arrays@^1.0.2:
1409
1172
  version "1.0.2"
1410
1173
  resolved "https://registry.yarnpkg.com/available-typed-arrays/-/available-typed-arrays-1.0.2.tgz#6b098ca9d8039079ee3f77f7b783c4480ba513f5"
@@ -1418,9 +1181,9 @@ aws-sign2@~0.7.0:
1418
1181
  integrity sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg=
1419
1182
 
1420
1183
  aws4@^1.8.0:
1421
- version "1.10.1"
1422
- resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.10.1.tgz#e1e82e4f3e999e2cfd61b161280d16a111f86428"
1423
- integrity sha512-zg7Hz2k5lI8kb7U32998pRRFin7zJlkfezGJjUc2heaD4Pw2wObakCDVzkKztTm/Ln7eiVvYsjqak0Ed4LkMDA==
1184
+ version "1.11.0"
1185
+ resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.11.0.tgz#d61f46d83b2519250e2784daf5b09479a8b41c59"
1186
+ integrity sha512-xh1Rl34h6Fi1DC2WWKfxUTVqRsNnr6LsKz2+hfwDxQJWmrx8+c7ylaqBMcHfl1U1r2dsifOvKX3LQuLNZ+XSvA==
1424
1187
 
1425
1188
  babel-plugin-dynamic-import-node@^2.3.3:
1426
1189
  version "2.3.3"
@@ -1429,27 +1192,6 @@ babel-plugin-dynamic-import-node@^2.3.3:
1429
1192
  dependencies:
1430
1193
  object.assign "^4.1.0"
1431
1194
 
1432
- babel-plugin-macros@^2.8.0:
1433
- version "2.8.0"
1434
- resolved "https://registry.yarnpkg.com/babel-plugin-macros/-/babel-plugin-macros-2.8.0.tgz#0f958a7cc6556b1e65344465d99111a1e5e10138"
1435
- integrity sha512-SEP5kJpfGYqYKpBrj5XU3ahw5p5GOHJ0U5ssOSQ/WBVdwkD2Dzlce95exQTs3jOVWPPKLBN2rlEWkCK7dSmLvg==
1436
- dependencies:
1437
- "@babel/runtime" "^7.7.2"
1438
- cosmiconfig "^6.0.0"
1439
- resolve "^1.12.0"
1440
-
1441
- babel-plugin-transform-async-to-promises@^0.8.15:
1442
- version "0.8.15"
1443
- resolved "https://registry.yarnpkg.com/babel-plugin-transform-async-to-promises/-/babel-plugin-transform-async-to-promises-0.8.15.tgz#13b6d8ef13676b4e3c576d3600b85344bb1ba346"
1444
- integrity sha512-fDXP68ZqcinZO2WCiimCL9zhGjGXOnn3D33zvbh+yheZ/qOrNVVDDIBtAaM3Faz8TRvQzHiRKsu3hfrBAhEncQ==
1445
-
1446
- babel-plugin-transform-replace-expressions@^0.2.0:
1447
- version "0.2.0"
1448
- resolved "https://registry.yarnpkg.com/babel-plugin-transform-replace-expressions/-/babel-plugin-transform-replace-expressions-0.2.0.tgz#59cba8df4b4a675e7c78cd21548f8e7685bbc30d"
1449
- integrity sha512-Eh1rRd9hWEYgkgoA3D0kGp7xJ/wgVshgsqmq60iC4HVWD+Lux+fNHSHBa2v1Hsv+dHflShC71qKhiH40OiPtDA==
1450
- dependencies:
1451
- "@babel/parser" "^7.3.3"
1452
-
1453
1195
  bail@^1.0.0:
1454
1196
  version "1.0.5"
1455
1197
  resolved "https://registry.yarnpkg.com/bail/-/bail-1.0.5.tgz#b6fa133404a392cbc1f8c4bf63f5953351e7a776"
@@ -1467,21 +1209,11 @@ bcrypt-pbkdf@^1.0.0:
1467
1209
  dependencies:
1468
1210
  tweetnacl "^0.14.3"
1469
1211
 
1470
- big.js@^5.2.2:
1471
- version "5.2.2"
1472
- resolved "https://registry.yarnpkg.com/big.js/-/big.js-5.2.2.tgz#65f0af382f578bcdc742bd9c281e9cb2d7768328"
1473
- integrity sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==
1474
-
1475
1212
  binary-extensions@^2.0.0:
1476
1213
  version "2.1.0"
1477
1214
  resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-2.1.0.tgz#30fa40c9e7fe07dbc895678cd287024dea241dd9"
1478
1215
  integrity sha512-1Yj8h9Q+QDF5FzhMs/c9+6UntbD5MkRfRwac8DoEm9ZfUBZ7tZ55YcGVAzEe4bXsdQHEk+s9S5wsOKVdZrw0tQ==
1479
1216
 
1480
- boolbase@^1.0.0, boolbase@~1.0.0:
1481
- version "1.0.0"
1482
- resolved "https://registry.yarnpkg.com/boolbase/-/boolbase-1.0.0.tgz#68dff5fbe60c51eb37725ea9e3ed310dcc1e776e"
1483
- integrity sha1-aN/1++YMUes3cl6p4+0xDcwed24=
1484
-
1485
1217
  brace-expansion@^1.1.7:
1486
1218
  version "1.1.11"
1487
1219
  resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd"
@@ -1497,13 +1229,6 @@ braces@^3.0.1, braces@~3.0.2:
1497
1229
  dependencies:
1498
1230
  fill-range "^7.0.1"
1499
1231
 
1500
- brotli-size@^4.0.0:
1501
- version "4.0.0"
1502
- resolved "https://registry.yarnpkg.com/brotli-size/-/brotli-size-4.0.0.tgz#a05ee3faad3c0e700a2f2da826ba6b4d76e69e5e"
1503
- integrity sha512-uA9fOtlTRC0iqKfzff1W34DXUA3GyVqbUaeo3Rw3d4gd1eavKVCETXrn3NzO74W+UVkG3UHu8WxUi+XvKI/huA==
1504
- dependencies:
1505
- duplexer "0.1.1"
1506
-
1507
1232
  browser-process-hrtime@^1.0.0:
1508
1233
  version "1.0.0"
1509
1234
  resolved "https://registry.yarnpkg.com/browser-process-hrtime/-/browser-process-hrtime-1.0.0.tgz#3c9b4b7d782c8121e56f10106d84c0d0ffc94626"
@@ -1514,33 +1239,37 @@ browser-stdout@1.3.1:
1514
1239
  resolved "https://registry.yarnpkg.com/browser-stdout/-/browser-stdout-1.3.1.tgz#baa559ee14ced73452229bad7326467c61fabd60"
1515
1240
  integrity sha512-qhAVI1+Av2X7qelOfAIYwXONood6XlZE/fXaBSmW/T5SzLAmCgzi+eiWE7fUvbHaeNBQH13UftjpXxsfLkMpgw==
1516
1241
 
1517
- browserslist@^4.0.0, browserslist@^4.12.0, browserslist@^4.8.5:
1518
- version "4.14.5"
1519
- resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.14.5.tgz#1c751461a102ddc60e40993639b709be7f2c4015"
1520
- integrity sha512-Z+vsCZIvCBvqLoYkBFTwEYH3v5MCQbsAjp50ERycpOjnPmolg1Gjy4+KaWWpm8QOJt9GHkhdqAl14NpCX73CWA==
1242
+ browserslist@^4.14.5, browserslist@^4.14.6:
1243
+ version "4.14.7"
1244
+ resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.14.7.tgz#c071c1b3622c1c2e790799a37bb09473a4351cb6"
1245
+ integrity sha512-BSVRLCeG3Xt/j/1cCGj1019Wbty0H+Yvu2AOuZSuoaUWn3RatbL33Cxk+Q4jRMRAbOm0p7SLravLjpnT6s0vzQ==
1521
1246
  dependencies:
1522
- caniuse-lite "^1.0.30001135"
1523
- electron-to-chromium "^1.3.571"
1524
- escalade "^3.1.0"
1525
- node-releases "^1.1.61"
1247
+ caniuse-lite "^1.0.30001157"
1248
+ colorette "^1.2.1"
1249
+ electron-to-chromium "^1.3.591"
1250
+ escalade "^3.1.1"
1251
+ node-releases "^1.1.66"
1526
1252
 
1527
1253
  buffer-from@^1.0.0:
1528
1254
  version "1.1.1"
1529
1255
  resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.1.tgz#32713bc028f75c02fdb710d7c7bcec1f2c6070ef"
1530
1256
  integrity sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A==
1531
1257
 
1532
- builtin-modules@^3.1.0:
1533
- version "3.1.0"
1534
- resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-3.1.0.tgz#aad97c15131eb76b65b50ef208e7584cd76a7484"
1535
- integrity sha512-k0KL0aWZuBt2lrxrcASWDfwOLMnodeQjodT/1SxEQAXsHANgo6ZC/VEaSEHCXt7aSTZ4/4H5LKa+tBXmW7Vtvw==
1536
-
1537
- cable_ready@^4.4.0-pre0:
1538
- version "4.4.0-pre1"
1539
- resolved "https://registry.yarnpkg.com/cable_ready/-/cable_ready-4.4.0-pre1.tgz#b9a262cefb539a9a87bd71da56835a7ba7d93653"
1540
- integrity sha512-V71BpFB9Q9KCHEWH3kzz3umaFpafMb7khr3TTZclO1xnepwPTiWgWEMqSv2afaQlPtqH6FEpr0UNK6dH4GwrSA==
1258
+ "cable_ready@>= 4.3.0":
1259
+ version "4.4.0"
1260
+ resolved "https://registry.yarnpkg.com/cable_ready/-/cable_ready-4.4.0.tgz#6291d01fcfe306592724be355facfac22c9834d8"
1261
+ integrity sha512-0KcCu3cuapDx6mo5UnJz8ZSTIMG9qNc+E3AgfF1qozPYCCbtjz+fQZ1rW0C/pUTXvRMNOfvzUjQ0aHU5IaGgVQ==
1541
1262
  dependencies:
1542
1263
  morphdom "^2.6.1"
1543
1264
 
1265
+ call-bind@^1.0.0:
1266
+ version "1.0.0"
1267
+ resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.0.tgz#24127054bb3f9bdcb4b1fb82418186072f77b8ce"
1268
+ integrity sha512-AEXsYIyyDY3MCzbwdhzG3Jx1R0J2wetQyUynn6dYHAO+bg8l1k7jwZtRv4ryryFs7EP+NDlikJlVe59jr0cM2w==
1269
+ dependencies:
1270
+ function-bind "^1.1.1"
1271
+ get-intrinsic "^1.0.0"
1272
+
1544
1273
  caller-callsite@^2.0.0:
1545
1274
  version "2.0.0"
1546
1275
  resolved "https://registry.yarnpkg.com/caller-callsite/-/caller-callsite-2.0.0.tgz#847e0fce0a223750a9a027c54b33731ad3154134"
@@ -1565,30 +1294,20 @@ callsites@^3.0.0:
1565
1294
  resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73"
1566
1295
  integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==
1567
1296
 
1568
- camelcase@5.3.1, camelcase@^5.0.0, camelcase@^5.3.1:
1297
+ camelcase@5.3.1, camelcase@^5.0.0:
1569
1298
  version "5.3.1"
1570
1299
  resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-5.3.1.tgz#e3c9b31569e106811df242f715725a1f4c494320"
1571
1300
  integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==
1572
1301
 
1573
1302
  camelcase@^6.0.0:
1574
- version "6.1.0"
1575
- resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-6.1.0.tgz#27dc176173725fb0adf8a48b647f4d7871944d78"
1576
- integrity sha512-WCMml9ivU60+8rEJgELlFp1gxFcEGxwYleE3bziHEDeqsqAWGHdimB7beBFGjLzVNgPGyDsfgXLQEYMpmIFnVQ==
1303
+ version "6.2.0"
1304
+ resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-6.2.0.tgz#924af881c9d525ac9d87f40d964e5cea982a1809"
1305
+ integrity sha512-c7wVvbw3f37nuobQNtgsgG9POC9qMbNuMQmTCqZv23b6MIz0fcYpBiOlv9gEN/hdLdnZTDQhg6e9Dq5M1vKvfg==
1577
1306
 
1578
- caniuse-api@^3.0.0:
1579
- version "3.0.0"
1580
- resolved "https://registry.yarnpkg.com/caniuse-api/-/caniuse-api-3.0.0.tgz#5e4d90e2274961d46291997df599e3ed008ee4c0"
1581
- integrity sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==
1582
- dependencies:
1583
- browserslist "^4.0.0"
1584
- caniuse-lite "^1.0.0"
1585
- lodash.memoize "^4.1.2"
1586
- lodash.uniq "^4.5.0"
1587
-
1588
- caniuse-lite@^1.0.0, caniuse-lite@^1.0.30001109, caniuse-lite@^1.0.30001135:
1589
- version "1.0.30001151"
1590
- resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001151.tgz#1ddfde5e6fff02aad7940b4edb7d3ac76b0cb00b"
1591
- integrity sha512-Zh3sHqskX6mHNrqUerh+fkf0N72cMxrmflzje/JyVImfpknscMnkeJrlFGJcqTmaa0iszdYptGpWMJCRQDkBVw==
1307
+ caniuse-lite@^1.0.30001157:
1308
+ version "1.0.30001161"
1309
+ resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001161.tgz#64f7ffe79ee780b8c92843ff34feb36cea4651e0"
1310
+ integrity sha512-JharrCDxOqPLBULF9/SPa6yMcBRTjZARJ6sc3cuKrPfyIk64JN6kuMINWqA99Xc8uElMFcROliwtz0n9pYej+g==
1592
1311
 
1593
1312
  caseless@~0.12.0:
1594
1313
  version "0.12.0"
@@ -1720,15 +1439,6 @@ cliui@^5.0.0:
1720
1439
  strip-ansi "^5.2.0"
1721
1440
  wrap-ansi "^5.1.0"
1722
1441
 
1723
- coa@^2.0.2:
1724
- version "2.0.2"
1725
- resolved "https://registry.yarnpkg.com/coa/-/coa-2.0.2.tgz#43f6c21151b4ef2bf57187db0d73de229e3e7ec3"
1726
- integrity sha512-q5/jG+YQnSy4nRTV4F7lPepBJZ8qBNJJDBuJdoejDyLXgmL7IEo+Le2JDZudFTFt7mrCqIRaSjws4ygRCTCAXA==
1727
- dependencies:
1728
- "@types/q" "^1.5.1"
1729
- chalk "^2.4.1"
1730
- q "^1.1.2"
1731
-
1732
1442
  code-point-at@^1.0.0:
1733
1443
  version "1.1.0"
1734
1444
  resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77"
@@ -1739,7 +1449,7 @@ collapse-white-space@^1.0.2:
1739
1449
  resolved "https://registry.yarnpkg.com/collapse-white-space/-/collapse-white-space-1.0.6.tgz#e63629c0016665792060dbbeb79c42239d2c5287"
1740
1450
  integrity sha512-jEovNnrhMuqyCcjfEJA56v0Xq8SkIoPKDyaHahwo3POf4qcSXqMYuwNcOTzp74vTsR9Tn08z4MxWqAhcekogkQ==
1741
1451
 
1742
- color-convert@^1.9.0, color-convert@^1.9.1:
1452
+ color-convert@^1.9.0:
1743
1453
  version "1.9.3"
1744
1454
  resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8"
1745
1455
  integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==
@@ -1758,27 +1468,11 @@ color-name@1.1.3:
1758
1468
  resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25"
1759
1469
  integrity sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=
1760
1470
 
1761
- color-name@^1.0.0, color-name@~1.1.4:
1471
+ color-name@~1.1.4:
1762
1472
  version "1.1.4"
1763
1473
  resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2"
1764
1474
  integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==
1765
1475
 
1766
- color-string@^1.5.4:
1767
- version "1.5.4"
1768
- resolved "https://registry.yarnpkg.com/color-string/-/color-string-1.5.4.tgz#dd51cd25cfee953d138fe4002372cc3d0e504cb6"
1769
- integrity sha512-57yF5yt8Xa3czSEW1jfQDE79Idk0+AkN/4KWad6tbdxUmAs3MvjxlWSWD4deYytcRfoZ9nhKyFl1kj5tBvidbw==
1770
- dependencies:
1771
- color-name "^1.0.0"
1772
- simple-swizzle "^0.2.2"
1773
-
1774
- color@^3.0.0:
1775
- version "3.1.3"
1776
- resolved "https://registry.yarnpkg.com/color/-/color-3.1.3.tgz#ca67fb4e7b97d611dcde39eceed422067d91596e"
1777
- integrity sha512-xgXAcTHa2HeFCGLE9Xs/R82hujGtu9Jd9x4NW3T34+OMs7VoPsjwzRczKHvTAHeJwWFwX5j15+MgAppE8ztObQ==
1778
- dependencies:
1779
- color-convert "^1.9.1"
1780
- color-string "^1.5.4"
1781
-
1782
1476
  colorette@^1.2.1:
1783
1477
  version "1.2.1"
1784
1478
  resolved "https://registry.yarnpkg.com/colorette/-/colorette-1.2.1.tgz#4d0b921325c14faf92633086a536db6e89564b1b"
@@ -1806,13 +1500,6 @@ concat-map@0.0.1:
1806
1500
  resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b"
1807
1501
  integrity sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=
1808
1502
 
1809
- concat-with-sourcemaps@^1.1.0:
1810
- version "1.1.0"
1811
- resolved "https://registry.yarnpkg.com/concat-with-sourcemaps/-/concat-with-sourcemaps-1.1.0.tgz#d4ea93f05ae25790951b99e7b3b09e3908a4082e"
1812
- integrity sha512-4gEjHJFT9e+2W/77h/DS5SGUgwDaOwprX8L/gl5+3ixnzkVJJsZWDSelmN3Oilw3LNDZjZV0yqH1hLG3k6nghg==
1813
- dependencies:
1814
- source-map "^0.6.1"
1815
-
1816
1503
  convert-source-map@^1.7.0:
1817
1504
  version "1.7.0"
1818
1505
  resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.7.0.tgz#17a2cb882d7f77d3490585e2ce6c524424a3a442"
@@ -1820,12 +1507,12 @@ convert-source-map@^1.7.0:
1820
1507
  dependencies:
1821
1508
  safe-buffer "~5.1.1"
1822
1509
 
1823
- core-js-compat@^3.6.2:
1824
- version "3.6.5"
1825
- resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.6.5.tgz#2a51d9a4e25dfd6e690251aa81f99e3c05481f1c"
1826
- integrity sha512-7ItTKOhOZbznhXAQ2g/slGg1PJV5zDO/WdkTwi7UEOJmkvsE32PWvx6mKtDjiMpjnR2CNf6BAD6sSxIlv7ptng==
1510
+ core-js-compat@^3.7.0:
1511
+ version "3.7.0"
1512
+ resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.7.0.tgz#8479c5d3d672d83f1f5ab94cf353e57113e065ed"
1513
+ integrity sha512-V8yBI3+ZLDVomoWICO6kq/CD28Y4r1M7CWeO4AGpMdMfseu8bkSubBmUPySMGKRTS+su4XQ07zUkAsiu9FCWTg==
1827
1514
  dependencies:
1828
- browserslist "^4.8.5"
1515
+ browserslist "^4.14.6"
1829
1516
  semver "7.0.0"
1830
1517
 
1831
1518
  core-util-is@1.0.2:
@@ -1833,7 +1520,7 @@ core-util-is@1.0.2:
1833
1520
  resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7"
1834
1521
  integrity sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=
1835
1522
 
1836
- cosmiconfig@5.2.1, cosmiconfig@^5.0.0, cosmiconfig@^5.2.1:
1523
+ cosmiconfig@5.2.1, cosmiconfig@^5.2.1:
1837
1524
  version "5.2.1"
1838
1525
  resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-5.2.1.tgz#040f726809c591e77a17c0a3626ca45b4f168b1a"
1839
1526
  integrity sha512-H65gsXo1SKjf8zmrJ67eJk8aIRKV5ff2D4uKZIBZShbhGSpEmsQOPW/SKMKYhSTrqR7ufy6RP69rPogdaPh/kA==
@@ -1843,17 +1530,6 @@ cosmiconfig@5.2.1, cosmiconfig@^5.0.0, cosmiconfig@^5.2.1:
1843
1530
  js-yaml "^3.13.1"
1844
1531
  parse-json "^4.0.0"
1845
1532
 
1846
- cosmiconfig@^6.0.0:
1847
- version "6.0.0"
1848
- resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-6.0.0.tgz#da4fee853c52f6b1e6935f41c1a2fc50bd4a9982"
1849
- integrity sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg==
1850
- dependencies:
1851
- "@types/parse-json" "^4.0.0"
1852
- import-fresh "^3.1.0"
1853
- parse-json "^5.0.0"
1854
- path-type "^4.0.0"
1855
- yaml "^1.7.2"
1856
-
1857
1533
  cross-spawn@^6.0.5:
1858
1534
  version "6.0.5"
1859
1535
  resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-6.0.5.tgz#4a5ec7c64dfae22c3a14124dbacdee846d80cbc4"
@@ -1874,155 +1550,6 @@ cross-spawn@^7.0.0:
1874
1550
  shebang-command "^2.0.0"
1875
1551
  which "^2.0.1"
1876
1552
 
1877
- css-color-names@0.0.4, css-color-names@^0.0.4:
1878
- version "0.0.4"
1879
- resolved "https://registry.yarnpkg.com/css-color-names/-/css-color-names-0.0.4.tgz#808adc2e79cf84738069b646cb20ec27beb629e0"
1880
- integrity sha1-gIrcLnnPhHOAabZGyyDsJ762KeA=
1881
-
1882
- css-declaration-sorter@^4.0.1:
1883
- version "4.0.1"
1884
- resolved "https://registry.yarnpkg.com/css-declaration-sorter/-/css-declaration-sorter-4.0.1.tgz#c198940f63a76d7e36c1e71018b001721054cb22"
1885
- integrity sha512-BcxQSKTSEEQUftYpBVnsH4SF05NTuBokb19/sBt6asXGKZ/6VP7PLG1CBCkFDYOnhXhPh0jMhO6xZ71oYHXHBA==
1886
- dependencies:
1887
- postcss "^7.0.1"
1888
- timsort "^0.3.0"
1889
-
1890
- css-modules-loader-core@^1.1.0:
1891
- version "1.1.0"
1892
- resolved "https://registry.yarnpkg.com/css-modules-loader-core/-/css-modules-loader-core-1.1.0.tgz#5908668294a1becd261ae0a4ce21b0b551f21d16"
1893
- integrity sha1-WQhmgpShvs0mGuCkziGwtVHyHRY=
1894
- dependencies:
1895
- icss-replace-symbols "1.1.0"
1896
- postcss "6.0.1"
1897
- postcss-modules-extract-imports "1.1.0"
1898
- postcss-modules-local-by-default "1.2.0"
1899
- postcss-modules-scope "1.1.0"
1900
- postcss-modules-values "1.3.0"
1901
-
1902
- css-select-base-adapter@^0.1.1:
1903
- version "0.1.1"
1904
- resolved "https://registry.yarnpkg.com/css-select-base-adapter/-/css-select-base-adapter-0.1.1.tgz#3b2ff4972cc362ab88561507a95408a1432135d7"
1905
- integrity sha512-jQVeeRG70QI08vSTwf1jHxp74JoZsr2XSgETae8/xC8ovSnL2WF87GTLO86Sbwdt2lK4Umg4HnnwMO4YF3Ce7w==
1906
-
1907
- css-select@^2.0.0:
1908
- version "2.1.0"
1909
- resolved "https://registry.yarnpkg.com/css-select/-/css-select-2.1.0.tgz#6a34653356635934a81baca68d0255432105dbef"
1910
- integrity sha512-Dqk7LQKpwLoH3VovzZnkzegqNSuAziQyNZUcrdDM401iY+R5NkGBXGmtO05/yaXQziALuPogeG0b7UAgjnTJTQ==
1911
- dependencies:
1912
- boolbase "^1.0.0"
1913
- css-what "^3.2.1"
1914
- domutils "^1.7.0"
1915
- nth-check "^1.0.2"
1916
-
1917
- css-selector-tokenizer@^0.7.0:
1918
- version "0.7.3"
1919
- resolved "https://registry.yarnpkg.com/css-selector-tokenizer/-/css-selector-tokenizer-0.7.3.tgz#735f26186e67c749aaf275783405cf0661fae8f1"
1920
- integrity sha512-jWQv3oCEL5kMErj4wRnK/OPoBi0D+P1FR2cDCKYPaMeD2eW3/mttav8HT4hT1CKopiJI/psEULjkClhvJo4Lvg==
1921
- dependencies:
1922
- cssesc "^3.0.0"
1923
- fastparse "^1.1.2"
1924
-
1925
- css-tree@1.0.0-alpha.37:
1926
- version "1.0.0-alpha.37"
1927
- resolved "https://registry.yarnpkg.com/css-tree/-/css-tree-1.0.0-alpha.37.tgz#98bebd62c4c1d9f960ec340cf9f7522e30709a22"
1928
- integrity sha512-DMxWJg0rnz7UgxKT0Q1HU/L9BeJI0M6ksor0OgqOnF+aRCDWg/N2641HmVyU9KVIu0OVVWOb2IpC9A+BJRnejg==
1929
- dependencies:
1930
- mdn-data "2.0.4"
1931
- source-map "^0.6.1"
1932
-
1933
- css-tree@^1.0.0:
1934
- version "1.0.0"
1935
- resolved "https://registry.yarnpkg.com/css-tree/-/css-tree-1.0.0.tgz#21993fa270d742642a90409a2c0cb3ac0298adf6"
1936
- integrity sha512-CdVYz/Yuqw0VdKhXPBIgi8DO3NicJVYZNWeX9XcIuSp9ZoFT5IcleVRW07O5rMjdcx1mb+MEJPknTTEW7DdsYw==
1937
- dependencies:
1938
- mdn-data "2.0.12"
1939
- source-map "^0.6.1"
1940
-
1941
- css-what@^3.2.1:
1942
- version "3.4.2"
1943
- resolved "https://registry.yarnpkg.com/css-what/-/css-what-3.4.2.tgz#ea7026fcb01777edbde52124e21f327e7ae950e4"
1944
- integrity sha512-ACUm3L0/jiZTqfzRM3Hi9Q8eZqd6IK37mMWPLz9PJxkLWllYeRf+EHUSHYEtFop2Eqytaq1FizFVh7XfBnXCDQ==
1945
-
1946
- cssesc@^3.0.0:
1947
- version "3.0.0"
1948
- resolved "https://registry.yarnpkg.com/cssesc/-/cssesc-3.0.0.tgz#37741919903b868565e1c09ea747445cd18983ee"
1949
- integrity sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==
1950
-
1951
- cssnano-preset-default@^4.0.7:
1952
- version "4.0.7"
1953
- resolved "https://registry.yarnpkg.com/cssnano-preset-default/-/cssnano-preset-default-4.0.7.tgz#51ec662ccfca0f88b396dcd9679cdb931be17f76"
1954
- integrity sha512-x0YHHx2h6p0fCl1zY9L9roD7rnlltugGu7zXSKQx6k2rYw0Hi3IqxcoAGF7u9Q5w1nt7vK0ulxV8Lo+EvllGsA==
1955
- dependencies:
1956
- css-declaration-sorter "^4.0.1"
1957
- cssnano-util-raw-cache "^4.0.1"
1958
- postcss "^7.0.0"
1959
- postcss-calc "^7.0.1"
1960
- postcss-colormin "^4.0.3"
1961
- postcss-convert-values "^4.0.1"
1962
- postcss-discard-comments "^4.0.2"
1963
- postcss-discard-duplicates "^4.0.2"
1964
- postcss-discard-empty "^4.0.1"
1965
- postcss-discard-overridden "^4.0.1"
1966
- postcss-merge-longhand "^4.0.11"
1967
- postcss-merge-rules "^4.0.3"
1968
- postcss-minify-font-values "^4.0.2"
1969
- postcss-minify-gradients "^4.0.2"
1970
- postcss-minify-params "^4.0.2"
1971
- postcss-minify-selectors "^4.0.2"
1972
- postcss-normalize-charset "^4.0.1"
1973
- postcss-normalize-display-values "^4.0.2"
1974
- postcss-normalize-positions "^4.0.2"
1975
- postcss-normalize-repeat-style "^4.0.2"
1976
- postcss-normalize-string "^4.0.2"
1977
- postcss-normalize-timing-functions "^4.0.2"
1978
- postcss-normalize-unicode "^4.0.1"
1979
- postcss-normalize-url "^4.0.1"
1980
- postcss-normalize-whitespace "^4.0.2"
1981
- postcss-ordered-values "^4.1.2"
1982
- postcss-reduce-initial "^4.0.3"
1983
- postcss-reduce-transforms "^4.0.2"
1984
- postcss-svgo "^4.0.2"
1985
- postcss-unique-selectors "^4.0.1"
1986
-
1987
- cssnano-util-get-arguments@^4.0.0:
1988
- version "4.0.0"
1989
- resolved "https://registry.yarnpkg.com/cssnano-util-get-arguments/-/cssnano-util-get-arguments-4.0.0.tgz#ed3a08299f21d75741b20f3b81f194ed49cc150f"
1990
- integrity sha1-7ToIKZ8h11dBsg87gfGU7UnMFQ8=
1991
-
1992
- cssnano-util-get-match@^4.0.0:
1993
- version "4.0.0"
1994
- resolved "https://registry.yarnpkg.com/cssnano-util-get-match/-/cssnano-util-get-match-4.0.0.tgz#c0e4ca07f5386bb17ec5e52250b4f5961365156d"
1995
- integrity sha1-wOTKB/U4a7F+xeUiULT1lhNlFW0=
1996
-
1997
- cssnano-util-raw-cache@^4.0.1:
1998
- version "4.0.1"
1999
- resolved "https://registry.yarnpkg.com/cssnano-util-raw-cache/-/cssnano-util-raw-cache-4.0.1.tgz#b26d5fd5f72a11dfe7a7846fb4c67260f96bf282"
2000
- integrity sha512-qLuYtWK2b2Dy55I8ZX3ky1Z16WYsx544Q0UWViebptpwn/xDBmog2TLg4f+DBMg1rJ6JDWtn96WHbOKDWt1WQA==
2001
- dependencies:
2002
- postcss "^7.0.0"
2003
-
2004
- cssnano-util-same-parent@^4.0.0:
2005
- version "4.0.1"
2006
- resolved "https://registry.yarnpkg.com/cssnano-util-same-parent/-/cssnano-util-same-parent-4.0.1.tgz#574082fb2859d2db433855835d9a8456ea18bbf3"
2007
- integrity sha512-WcKx5OY+KoSIAxBW6UBBRay1U6vkYheCdjyVNDm85zt5K9mHoGOfsOsqIszfAqrQQFIIKgjh2+FDgIj/zsl21Q==
2008
-
2009
- cssnano@^4.1.10:
2010
- version "4.1.10"
2011
- resolved "https://registry.yarnpkg.com/cssnano/-/cssnano-4.1.10.tgz#0ac41f0b13d13d465487e111b778d42da631b8b2"
2012
- integrity sha512-5wny+F6H4/8RgNlaqab4ktc3e0/blKutmq8yNlBFXA//nSFFAqAngjNVRzUvCgYROULmZZUoosL/KSoZo5aUaQ==
2013
- dependencies:
2014
- cosmiconfig "^5.0.0"
2015
- cssnano-preset-default "^4.0.7"
2016
- is-resolvable "^1.0.0"
2017
- postcss "^7.0.0"
2018
-
2019
- csso@^4.0.2:
2020
- version "4.1.0"
2021
- resolved "https://registry.yarnpkg.com/csso/-/csso-4.1.0.tgz#1d31193efa99b87aa6bad6c0cef155e543d09e8b"
2022
- integrity sha512-h+6w/W1WqXaJA4tb1dk7r5tVbOm97MsKxzwnvOR04UQ6GILroryjMWu3pmCCtL2mLaEStQ0fZgeGiy99mo7iyg==
2023
- dependencies:
2024
- css-tree "^1.0.0"
2025
-
2026
1553
  cssom@^0.4.4:
2027
1554
  version "0.4.4"
2028
1555
  resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.4.4.tgz#5a66cf93d2d0b661d80bf6a44fb65f5c2e4e0a10"
@@ -2066,13 +1593,20 @@ date-fns@^1.27.2:
2066
1593
  resolved "https://registry.yarnpkg.com/date-fns/-/date-fns-1.30.1.tgz#2e71bf0b119153dbb4cc4e88d9ea5acfb50dc05c"
2067
1594
  integrity sha512-hBSVCvSmWC+QypYObzwGOd9wqdDpOt+0wl0KbU+R+uuZBS1jN8VsD1ss3irQDknRj5NvxiTF6oj/nDRnN/UQNw==
2068
1595
 
2069
- debug@4.2.0, debug@^4.0.1, debug@^4.1.0, debug@^4.1.1:
1596
+ debug@4.2.0:
2070
1597
  version "4.2.0"
2071
1598
  resolved "https://registry.yarnpkg.com/debug/-/debug-4.2.0.tgz#7f150f93920e94c58f5574c2fd01a3110effe7f1"
2072
1599
  integrity sha512-IX2ncY78vDTjZMFUdmsvIRFY2Cf4FnD0wRs+nQwJU8Lu99/tPFdb0VybiiMTPe3I6rQmwsqQqRBvxU+bZ/I8sg==
2073
1600
  dependencies:
2074
1601
  ms "2.1.2"
2075
1602
 
1603
+ debug@^4.0.1, debug@^4.1.0, debug@^4.1.1:
1604
+ version "4.3.1"
1605
+ resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.1.tgz#f0d229c505e0c6d8c49ac553d1b13dc183f6b2ee"
1606
+ integrity sha512-doEwdvm4PCeK4K3RQN2ZC2BYUBaxwLARCqZmMjtF8a51J2Rb0xpVloFRnCODwqjpwnAoao4pelN8l3RJdv3gRQ==
1607
+ dependencies:
1608
+ ms "2.1.2"
1609
+
2076
1610
  decamelize@^1.2.0:
2077
1611
  version "1.2.0"
2078
1612
  resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290"
@@ -2148,24 +1682,6 @@ doctrine@^3.0.0:
2148
1682
  dependencies:
2149
1683
  esutils "^2.0.2"
2150
1684
 
2151
- dom-serializer@0:
2152
- version "0.2.2"
2153
- resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-0.2.2.tgz#1afb81f533717175d478655debc5e332d9f9bb51"
2154
- integrity sha512-2/xPb3ORsQ42nHYiSunXkDjPLBaEj/xTwUO4B7XCZQTRk7EBtTOPaygh10YAAh2OI1Qrp6NWfpAhzswj0ydt9g==
2155
- dependencies:
2156
- domelementtype "^2.0.1"
2157
- entities "^2.0.0"
2158
-
2159
- domelementtype@1:
2160
- version "1.3.1"
2161
- resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-1.3.1.tgz#d048c44b37b0d10a7f2a3d5fee3f4333d790481f"
2162
- integrity sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w==
2163
-
2164
- domelementtype@^2.0.1:
2165
- version "2.0.2"
2166
- resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-2.0.2.tgz#f3b6e549201e46f588b59463dd77187131fe6971"
2167
- integrity sha512-wFwTwCVebUrMgGeAwRL/NhZtHAUyT9n9yg4IMDwf10+6iCMxSkVq9MGCVEH+QZWo1nNidy8kNvwmv4zWHDTqvA==
2168
-
2169
1685
  domexception@^2.0.1:
2170
1686
  version "2.0.1"
2171
1687
  resolved "https://registry.yarnpkg.com/domexception/-/domexception-2.0.1.tgz#fb44aefba793e1574b0af6aed2801d057529f304"
@@ -2173,31 +1689,6 @@ domexception@^2.0.1:
2173
1689
  dependencies:
2174
1690
  webidl-conversions "^5.0.0"
2175
1691
 
2176
- domutils@^1.7.0:
2177
- version "1.7.0"
2178
- resolved "https://registry.yarnpkg.com/domutils/-/domutils-1.7.0.tgz#56ea341e834e06e6748af7a1cb25da67ea9f8c2a"
2179
- integrity sha512-Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg==
2180
- dependencies:
2181
- dom-serializer "0"
2182
- domelementtype "1"
2183
-
2184
- dot-prop@^5.2.0:
2185
- version "5.3.0"
2186
- resolved "https://registry.yarnpkg.com/dot-prop/-/dot-prop-5.3.0.tgz#90ccce708cd9cd82cc4dc8c3ddd9abdd55b20e88"
2187
- integrity sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==
2188
- dependencies:
2189
- is-obj "^2.0.0"
2190
-
2191
- duplexer@0.1.1:
2192
- version "0.1.1"
2193
- resolved "https://registry.yarnpkg.com/duplexer/-/duplexer-0.1.1.tgz#ace6ff808c1ce66b57d1ebf97977acb02334cfc1"
2194
- integrity sha1-rOb/gIwc5mtX0ev5eXessCM0z8E=
2195
-
2196
- duplexer@^0.1.1:
2197
- version "0.1.2"
2198
- resolved "https://registry.yarnpkg.com/duplexer/-/duplexer-0.1.2.tgz#3abe43aef3835f8ae077d136ddce0f276b0400e6"
2199
- integrity sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==
2200
-
2201
1692
  ecc-jsbn@~0.1.1:
2202
1693
  version "0.1.2"
2203
1694
  resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz#3a83a904e54353287874c564b7549386849a98c9"
@@ -2221,10 +1712,10 @@ editorconfig@0.15.3:
2221
1712
  semver "^5.6.0"
2222
1713
  sigmund "^1.0.1"
2223
1714
 
2224
- electron-to-chromium@^1.3.571:
2225
- version "1.3.584"
2226
- resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.584.tgz#506cf7ba5895aafa8241876ab028654b61fd9ceb"
2227
- integrity sha512-NB3DzrTzJFhWkUp+nl2KtUtoFzrfGXTir2S+BU4tXGyXH9vlluPuFpE3pTKeH7+PY460tHLjKzh6K2+TWwW+Ww==
1715
+ electron-to-chromium@^1.3.591:
1716
+ version "1.3.607"
1717
+ resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.607.tgz#1bff13f1cf89f2fee0d244b8c64a7138f80f3a3b"
1718
+ integrity sha512-h2SYNaBnlplGS0YyXl8oJWokfcNxVjJANQfMCsQefG6OSuAuNIeW+A8yGT/ci+xRoBb3k2zq1FrOvkgoKBol8g==
2228
1719
 
2229
1720
  elegant-spinner@^1.0.1:
2230
1721
  version "1.0.1"
@@ -2241,11 +1732,6 @@ emoji-regex@^8.0.0:
2241
1732
  resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37"
2242
1733
  integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==
2243
1734
 
2244
- emojis-list@^3.0.0:
2245
- version "3.0.0"
2246
- resolved "https://registry.yarnpkg.com/emojis-list/-/emojis-list-3.0.0.tgz#5570662046ad29e2e916e71aae260abdff4f6a78"
2247
- integrity sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==
2248
-
2249
1735
  end-of-stream@^1.1.0:
2250
1736
  version "1.4.4"
2251
1737
  resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.4.4.tgz#5ae64a5f45057baf3626ec14da0ca5e4b2431eb0"
@@ -2253,11 +1739,6 @@ end-of-stream@^1.1.0:
2253
1739
  dependencies:
2254
1740
  once "^1.4.0"
2255
1741
 
2256
- entities@^2.0.0:
2257
- version "2.1.0"
2258
- resolved "https://registry.yarnpkg.com/entities/-/entities-2.1.0.tgz#992d3129cf7df6870b96c57858c249a120f8b8b5"
2259
- integrity sha512-hCx1oky9PFrJ611mf0ifBLBRW8lUUVRlFolb5gWRfIELabBlbp9xZvrqZLZAs+NxFnbfQoeGd8wDkygjg7U85w==
2260
-
2261
1742
  error-ex@^1.3.1:
2262
1743
  version "1.3.2"
2263
1744
  resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf"
@@ -2265,7 +1746,7 @@ error-ex@^1.3.1:
2265
1746
  dependencies:
2266
1747
  is-arrayish "^0.2.1"
2267
1748
 
2268
- es-abstract@^1.17.0-next.1, es-abstract@^1.17.2, es-abstract@^1.17.4, es-abstract@^1.17.5:
1749
+ es-abstract@^1.17.4, es-abstract@^1.17.5:
2269
1750
  version "1.17.7"
2270
1751
  resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.17.7.tgz#a4de61b2f66989fc7421676c1cb9787573ace54c"
2271
1752
  integrity sha512-VBl/gnfcJ7OercKA9MVaegWsBHFjV492syMudcnQZvt/Dw8ezpcOHYZXa/J96O8vx+g4x65YKhxOwDUh63aS5g==
@@ -2282,7 +1763,7 @@ es-abstract@^1.17.0-next.1, es-abstract@^1.17.2, es-abstract@^1.17.4, es-abstrac
2282
1763
  string.prototype.trimend "^1.0.1"
2283
1764
  string.prototype.trimstart "^1.0.1"
2284
1765
 
2285
- es-abstract@^1.18.0-next.0, es-abstract@^1.18.0-next.1:
1766
+ es-abstract@^1.18.0-next.1:
2286
1767
  version "1.18.0-next.1"
2287
1768
  resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.18.0-next.1.tgz#6e3a0a4bda717e5023ab3b8e90bec36108d22c68"
2288
1769
  integrity sha512-I4UGspA0wpZXWENrdA0uHbnhte683t3qT/1VFH9aX2dA5PPSf6QW5HHXf5HImaqPmjXaVeVk4RGWnaylmV7uAA==
@@ -2314,12 +1795,7 @@ es6-object-assign@^1.1.0:
2314
1795
  resolved "https://registry.yarnpkg.com/es6-object-assign/-/es6-object-assign-1.1.0.tgz#c2c3582656247c39ea107cb1e6652b6f9f24523c"
2315
1796
  integrity sha1-wsNYJlYkfDnqEHyx5mUrb58kUjw=
2316
1797
 
2317
- es6-promisify@^6.1.1:
2318
- version "6.1.1"
2319
- resolved "https://registry.yarnpkg.com/es6-promisify/-/es6-promisify-6.1.1.tgz#46837651b7b06bf6fff893d03f29393668d01621"
2320
- integrity sha512-HBL8I3mIki5C1Cc9QjKUenHtnG0A5/xA8Q/AllRcfiwl2CZFXGK7ddBiCoRwAix4i2KxcQfjtIVcrVbB3vbmwg==
2321
-
2322
- escalade@^3.1.0:
1798
+ escalade@^3.1.1:
2323
1799
  version "3.1.1"
2324
1800
  resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.1.1.tgz#d8cfdc7000965c5a0174b4a82eaa5c0552742e40"
2325
1801
  integrity sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==
@@ -2329,7 +1805,7 @@ escape-string-regexp@2.0.0:
2329
1805
  resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz#a30304e99daa32e23b2fd20f51babd07cffca344"
2330
1806
  integrity sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==
2331
1807
 
2332
- escape-string-regexp@4.0.0, escape-string-regexp@^4.0.0:
1808
+ escape-string-regexp@4.0.0:
2333
1809
  version "4.0.0"
2334
1810
  resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz#14ba83a5d373e3d311e5afca29cf5bfad965bf34"
2335
1811
  integrity sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==
@@ -2457,26 +1933,11 @@ estraverse@^5.1.0, estraverse@^5.2.0:
2457
1933
  resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-5.2.0.tgz#307df42547e6cc7324d3cf03c155d5cdb8c53880"
2458
1934
  integrity sha512-BxbNGGNm0RyRYvUdHpIwv9IWzeM9XClbOxwoATuFdOE7ZE6wHL+HQ5T8hoPM+zHvmKzzsEqhgy0GrQ5X13afiQ==
2459
1935
 
2460
- estree-walker@^0.6.1:
2461
- version "0.6.1"
2462
- resolved "https://registry.yarnpkg.com/estree-walker/-/estree-walker-0.6.1.tgz#53049143f40c6eb918b23671d1fe3219f3a1b362"
2463
- integrity sha512-SqmZANLWS0mnatqbSfRP5g8OXZC12Fgg1IwNtLsyHDzJizORW4khDfjPqJZsemPWBB2uqykUah5YpQ6epsqC/w==
2464
-
2465
- estree-walker@^1.0.1:
2466
- version "1.0.1"
2467
- resolved "https://registry.yarnpkg.com/estree-walker/-/estree-walker-1.0.1.tgz#31bc5d612c96b704106b477e6dd5d8aa138cb700"
2468
- integrity sha512-1fMXF3YP4pZZVozF8j/ZLfvnR8NSIljt56UhbZ5PeeDmmGHpgpdwQt7ITlGvYaQukCvuBRMLEiKiYC+oeIg4cg==
2469
-
2470
1936
  esutils@2.0.3, esutils@^2.0.2:
2471
1937
  version "2.0.3"
2472
1938
  resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64"
2473
1939
  integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==
2474
1940
 
2475
- eventemitter3@^4.0.4:
2476
- version "4.0.7"
2477
- resolved "https://registry.yarnpkg.com/eventemitter3/-/eventemitter3-4.0.7.tgz#2de9b68f6528d5644ef5c59526a1b4a07306169f"
2478
- integrity sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==
2479
-
2480
1941
  execa@^2.0.3, execa@^2.0.4:
2481
1942
  version "2.1.0"
2482
1943
  resolved "https://registry.yarnpkg.com/execa/-/execa-2.1.0.tgz#e5d3ecd837d2a60ec50f3da78fd39767747bbe99"
@@ -2543,11 +2004,6 @@ fast-levenshtein@~2.0.6:
2543
2004
  resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917"
2544
2005
  integrity sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=
2545
2006
 
2546
- fastparse@^1.1.2:
2547
- version "1.1.2"
2548
- resolved "https://registry.yarnpkg.com/fastparse/-/fastparse-1.1.2.tgz#91728c5a5942eced8531283c79441ee4122c35a9"
2549
- integrity sha512-483XLLxTVIwWK3QTrMGRqUfUpoOs/0hbQrl2oz4J0pAcm3A3bu84wxTFqGqkJzewCLdME38xJLJAxBABfQT8sQ==
2550
-
2551
2007
  fastq@^1.6.0:
2552
2008
  version "1.9.0"
2553
2009
  resolved "https://registry.yarnpkg.com/fastq/-/fastq-1.9.0.tgz#e16a72f338eaca48e91b5c23593bcc2ef66b7947"
@@ -2555,7 +2011,7 @@ fastq@^1.6.0:
2555
2011
  dependencies:
2556
2012
  reusify "^1.0.4"
2557
2013
 
2558
- figures@^1.0.1, figures@^1.7.0:
2014
+ figures@^1.7.0:
2559
2015
  version "1.7.0"
2560
2016
  resolved "https://registry.yarnpkg.com/figures/-/figures-1.7.0.tgz#cbe1e3affcf1cd44b80cadfed28dc793a9701d2e"
2561
2017
  integrity sha1-y+Hjr/zxzUS4DK3+0o3Hk6lwHS4=
@@ -2584,11 +2040,6 @@ file-entry-cache@^5.0.1:
2584
2040
  dependencies:
2585
2041
  flat-cache "^2.0.1"
2586
2042
 
2587
- filesize@^6.1.0:
2588
- version "6.1.0"
2589
- resolved "https://registry.yarnpkg.com/filesize/-/filesize-6.1.0.tgz#e81bdaa780e2451d714d71c0d7a4f3238d37ad00"
2590
- integrity sha512-LpCHtPQ3sFx67z+uh2HnSyWSLLu5Jxo21795uRDuar/EOuYWXib5EmPaGIBuSnRqH2IODiKA2k5re/K9OnN/Yg==
2591
-
2592
2043
  fill-range@^7.0.1:
2593
2044
  version "7.0.1"
2594
2045
  resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40"
@@ -2605,15 +2056,6 @@ find-cache-dir@^2.0.0:
2605
2056
  make-dir "^2.0.0"
2606
2057
  pkg-dir "^3.0.0"
2607
2058
 
2608
- find-cache-dir@^3.0.0:
2609
- version "3.3.1"
2610
- resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-3.3.1.tgz#89b33fad4a4670daa94f855f7fbe31d6d84fe880"
2611
- integrity sha512-t2GDMt3oGC/v+BMwzmllWDuJF/xcDtE5j/fCGbqDD7OLuJkj0cfh1YSA5VKPvwMeLFLNDBkwOKZ2X85jGLVftQ==
2612
- dependencies:
2613
- commondir "^1.0.1"
2614
- make-dir "^3.0.2"
2615
- pkg-dir "^4.1.0"
2616
-
2617
2059
  find-parent-dir@0.3.0:
2618
2060
  version "0.3.0"
2619
2061
  resolved "https://registry.yarnpkg.com/find-parent-dir/-/find-parent-dir-0.3.0.tgz#33c44b429ab2b2f0646299c5f9f718f376ff8d54"
@@ -2639,7 +2081,7 @@ find-up@^3.0.0:
2639
2081
  dependencies:
2640
2082
  locate-path "^3.0.0"
2641
2083
 
2642
- find-up@^4.0.0, find-up@^4.1.0:
2084
+ find-up@^4.1.0:
2643
2085
  version "4.1.0"
2644
2086
  resolved "https://registry.yarnpkg.com/find-up/-/find-up-4.1.0.tgz#97afe7d6cdc0bc5928584b7c8d7b16e8a9aa5d19"
2645
2087
  integrity sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==
@@ -2695,20 +2137,6 @@ form-data@~2.3.2:
2695
2137
  combined-stream "^1.0.6"
2696
2138
  mime-types "^2.1.12"
2697
2139
 
2698
- "form-serialize@>= 0.7.2":
2699
- version "0.7.2"
2700
- resolved "https://registry.yarnpkg.com/form-serialize/-/form-serialize-0.7.2.tgz#b0a2ff0c22026fb6d3d15c9d33f6de6a432e4732"
2701
- integrity sha1-sKL/DCICb7bT0VydM/beakMuRzI=
2702
-
2703
- fs-extra@8.1.0:
2704
- version "8.1.0"
2705
- resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-8.1.0.tgz#49d43c45a88cd9677668cb7be1b46efdb8d2e1c0"
2706
- integrity sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==
2707
- dependencies:
2708
- graceful-fs "^4.2.0"
2709
- jsonfile "^4.0.0"
2710
- universalify "^0.1.0"
2711
-
2712
2140
  fs.realpath@^1.0.0:
2713
2141
  version "1.0.0"
2714
2142
  resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f"
@@ -2729,13 +2157,6 @@ functional-red-black-tree@^1.0.1:
2729
2157
  resolved "https://registry.yarnpkg.com/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz#1b0ab3bd553b2a0d6399d29c0e3ea0b252078327"
2730
2158
  integrity sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc=
2731
2159
 
2732
- generic-names@^2.0.1:
2733
- version "2.0.1"
2734
- resolved "https://registry.yarnpkg.com/generic-names/-/generic-names-2.0.1.tgz#f8a378ead2ccaa7a34f0317b05554832ae41b872"
2735
- integrity sha512-kPCHWa1m9wGG/OwQpeweTwM/PYiQLrUIxXbt/P4Nic3LbGjCP0YwrALHW1uNLKZ0LIMg+RF+XRlj2ekT9ZlZAQ==
2736
- dependencies:
2737
- loader-utils "^1.1.0"
2738
-
2739
2160
  gensync@^1.0.0-beta.1:
2740
2161
  version "1.0.0-beta.2"
2741
2162
  resolved "https://registry.yarnpkg.com/gensync/-/gensync-1.0.0-beta.2.tgz#32a6ee76c3d7f52d46b2b1ae5d93fea8580a25e0"
@@ -2746,6 +2167,15 @@ get-caller-file@^2.0.1:
2746
2167
  resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e"
2747
2168
  integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==
2748
2169
 
2170
+ get-intrinsic@^1.0.0:
2171
+ version "1.0.1"
2172
+ resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.0.1.tgz#94a9768fcbdd0595a1c9273aacf4c89d075631be"
2173
+ integrity sha512-ZnWP+AmS1VUaLgTRy47+zKtjTxz+0xMpx3I52i+aalBK1QP19ggLF3Db89KJX7kjfOfP2eoa01qc++GwPgufPg==
2174
+ dependencies:
2175
+ function-bind "^1.1.1"
2176
+ has "^1.0.3"
2177
+ has-symbols "^1.0.1"
2178
+
2749
2179
  get-own-enumerable-property-symbols@^3.0.0:
2750
2180
  version "3.0.2"
2751
2181
  resolved "https://registry.yarnpkg.com/get-own-enumerable-property-symbols/-/get-own-enumerable-property-symbols-3.0.2.tgz#b5fde77f22cbe35f390b4e089922c50bce6ef664"
@@ -2784,7 +2214,7 @@ glob-parent@^5.0.0, glob-parent@^5.1.0, glob-parent@~5.1.0:
2784
2214
  dependencies:
2785
2215
  is-glob "^4.0.1"
2786
2216
 
2787
- glob@7.1.6, glob@^7.0.3, glob@^7.1.2, glob@^7.1.3, glob@^7.1.4:
2217
+ glob@7.1.6, glob@^7.0.3, glob@^7.1.3, glob@^7.1.4:
2788
2218
  version "7.1.6"
2789
2219
  resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.6.tgz#141f33b81a7c2492e125594307480c46679278a6"
2790
2220
  integrity sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==
@@ -2808,11 +2238,6 @@ globals@^12.1.0:
2808
2238
  dependencies:
2809
2239
  type-fest "^0.8.1"
2810
2240
 
2811
- globalyzer@^0.1.0:
2812
- version "0.1.4"
2813
- resolved "https://registry.yarnpkg.com/globalyzer/-/globalyzer-0.1.4.tgz#bc8e273afe1ac7c24eea8def5b802340c5cc534f"
2814
- integrity sha512-LeguVWaxgHN0MNbWC6YljNMzHkrCny9fzjmEUdnF1kQ7wATFD1RHFRqA1qxaX2tgxGENlcxjOflopBwj3YZiXA==
2815
-
2816
2241
  globby@6.1.0, globby@^6.1.0:
2817
2242
  version "6.1.0"
2818
2243
  resolved "https://registry.yarnpkg.com/globby/-/globby-6.1.0.tgz#f5a6d70e8395e21c858fb0489d64df02424d506c"
@@ -2838,12 +2263,7 @@ globby@^10.0.1:
2838
2263
  merge2 "^1.2.3"
2839
2264
  slash "^3.0.0"
2840
2265
 
2841
- globrex@^0.1.1:
2842
- version "0.1.2"
2843
- resolved "https://registry.yarnpkg.com/globrex/-/globrex-0.1.2.tgz#dd5d9ec826232730cd6793a5e33a9302985e6098"
2844
- integrity sha512-uHJgbwAMwNFf5mLst7IWLNg14x1CkeqglJb/K3doi4dw6q2IvAAmM/Y81kevy83wP+Sst+nutFTYOGg3d1lsxg==
2845
-
2846
- graceful-fs@^4.1.6, graceful-fs@^4.2.0, graceful-fs@^4.2.2:
2266
+ graceful-fs@^4.2.2:
2847
2267
  version "4.2.4"
2848
2268
  resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.4.tgz#2256bde14d3632958c465ebc96dc467ca07a29fb"
2849
2269
  integrity sha512-WjKPNJF79dtJAVniUlGGWHYGz2jWxT6VhN/4m1NdkbZ2nOsEF+cI1Edgql5zCRhs/VsQYRvrXctxktVXZUkixw==
@@ -2860,21 +2280,6 @@ growl@1.10.5:
2860
2280
  resolved "https://registry.yarnpkg.com/growl/-/growl-1.10.5.tgz#f2735dc2283674fa67478b10181059355c369e5e"
2861
2281
  integrity sha512-qBr4OuELkhPenW6goKVXiv47US3clb3/IbuWF9KNKEijAy9oeHxU9IgzjvJhHkUzhaj7rOUD7+YGWqUjLp5oSA==
2862
2282
 
2863
- gzip-size@^3.0.0:
2864
- version "3.0.0"
2865
- resolved "https://registry.yarnpkg.com/gzip-size/-/gzip-size-3.0.0.tgz#546188e9bdc337f673772f81660464b389dce520"
2866
- integrity sha1-VGGI6b3DN/Zzdy+BZgRks4nc5SA=
2867
- dependencies:
2868
- duplexer "^0.1.1"
2869
-
2870
- gzip-size@^5.1.1:
2871
- version "5.1.1"
2872
- resolved "https://registry.yarnpkg.com/gzip-size/-/gzip-size-5.1.1.tgz#cb9bee692f87c0612b232840a873904e4c135274"
2873
- integrity sha512-FNHi6mmoHvs1mxZAds4PpdCS6QG8B4C1krxJsMutgxl5t3+GlRTzzI3NEkifXx2pVsOvJdOGSmIgDhQ55FwdPA==
2874
- dependencies:
2875
- duplexer "^0.1.1"
2876
- pify "^4.0.1"
2877
-
2878
2283
  handlebars@^4.0.13:
2879
2284
  version "4.7.6"
2880
2285
  resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.7.6.tgz#d4c05c1baf90e9945f77aa68a7a219aa4a7df74e"
@@ -2927,7 +2332,7 @@ has-symbols@^1.0.1:
2927
2332
  resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.1.tgz#9f5214758a44196c406d9bd76cebf81ec2dd31e8"
2928
2333
  integrity sha512-PLcsoqu++dmEIZB+6totNFKq/7Do+Z0u4oT0zKOJNl3lYK6vGwwu2hjHs+68OEZbTjiUE9bgOABXbP/GvrS0Kg==
2929
2334
 
2930
- has@^1.0.0, has@^1.0.3:
2335
+ has@^1.0.3:
2931
2336
  version "1.0.3"
2932
2337
  resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796"
2933
2338
  integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==
@@ -2939,26 +2344,6 @@ he@1.2.0:
2939
2344
  resolved "https://registry.yarnpkg.com/he/-/he-1.2.0.tgz#84ae65fa7eafb165fddb61566ae14baf05664f0f"
2940
2345
  integrity sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==
2941
2346
 
2942
- hex-color-regex@^1.1.0:
2943
- version "1.1.0"
2944
- resolved "https://registry.yarnpkg.com/hex-color-regex/-/hex-color-regex-1.1.0.tgz#4c06fccb4602fe2602b3c93df82d7e7dbf1a8a8e"
2945
- integrity sha512-l9sfDFsuqtOqKDsQdqrMRk0U85RZc0RtOR9yPI7mRVOa4FsR/BVnZ0shmQRM96Ji99kYZP/7hn1cedc1+ApsTQ==
2946
-
2947
- hsl-regex@^1.0.0:
2948
- version "1.0.0"
2949
- resolved "https://registry.yarnpkg.com/hsl-regex/-/hsl-regex-1.0.0.tgz#d49330c789ed819e276a4c0d272dffa30b18fe6e"
2950
- integrity sha1-1JMwx4ntgZ4nakwNJy3/owsY/m4=
2951
-
2952
- hsla-regex@^1.0.0:
2953
- version "1.0.0"
2954
- resolved "https://registry.yarnpkg.com/hsla-regex/-/hsla-regex-1.0.0.tgz#c1ce7a3168c8c6614033a4b5f7877f3b225f9c38"
2955
- integrity sha1-wc56MWjIxmFAM6S194d/OyJfnDg=
2956
-
2957
- html-comment-regex@^1.1.0:
2958
- version "1.1.2"
2959
- resolved "https://registry.yarnpkg.com/html-comment-regex/-/html-comment-regex-1.1.2.tgz#97d4688aeb5c81886a364faa0cad1dda14d433a7"
2960
- integrity sha512-P+M65QY2JQ5Y0G9KKdlDpo0zK+/OHptU5AaBwUfAIDJZk1MYf32Frm84EcOytfJE0t5JvkAnKlmjsXDnWzCJmQ==
2961
-
2962
2347
  html-element-attributes@2.2.1:
2963
2348
  version "2.2.1"
2964
2349
  resolved "https://registry.yarnpkg.com/html-element-attributes/-/html-element-attributes-2.2.1.tgz#ff397c7a3d6427064b117b6f36b45be08e79db93"
@@ -2997,11 +2382,6 @@ iconv-lite@0.4.24, iconv-lite@^0.4.24:
2997
2382
  dependencies:
2998
2383
  safer-buffer ">= 2.1.2 < 3"
2999
2384
 
3000
- icss-replace-symbols@1.1.0, icss-replace-symbols@^1.1.0:
3001
- version "1.1.0"
3002
- resolved "https://registry.yarnpkg.com/icss-replace-symbols/-/icss-replace-symbols-1.1.0.tgz#06ea6f83679a7749e386cfe1fe812ae5db223ded"
3003
- integrity sha1-Bupvg2ead0njhs/h/oEq5dsiPe0=
3004
-
3005
2385
  ignore@4.0.6, ignore@^4.0.6:
3006
2386
  version "4.0.6"
3007
2387
  resolved "https://registry.yarnpkg.com/ignore/-/ignore-4.0.6.tgz#750e3db5862087b4737ebac8207ffd1ef27b25fc"
@@ -3017,20 +2397,6 @@ ignore@^5.1.1:
3017
2397
  resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.1.8.tgz#f150a8b50a34289b33e22f5889abd4d8016f0e57"
3018
2398
  integrity sha512-BMpfD7PpiETpBl/A6S498BaIJ6Y/ABT93ETbby2fP00v4EbvPBXWEoaR1UBPKs3iR53pJY7EtZk5KACI57i1Uw==
3019
2399
 
3020
- import-cwd@^2.0.0:
3021
- version "2.1.0"
3022
- resolved "https://registry.yarnpkg.com/import-cwd/-/import-cwd-2.1.0.tgz#aa6cf36e722761285cb371ec6519f53e2435b0a9"
3023
- integrity sha1-qmzzbnInYShcs3HsZRn1PiQ1sKk=
3024
- dependencies:
3025
- import-from "^2.1.0"
3026
-
3027
- import-cwd@^3.0.0:
3028
- version "3.0.0"
3029
- resolved "https://registry.yarnpkg.com/import-cwd/-/import-cwd-3.0.0.tgz#20845547718015126ea9b3676b7592fb8bd4cf92"
3030
- integrity sha512-4pnzH16plW+hgvRECbDWpQl3cqtvSofHWh44met7ESfZ8UZOWWddm8hEyDTqREJ9RbYHY8gi8DqmaelApoOGMg==
3031
- dependencies:
3032
- import-from "^3.0.0"
3033
-
3034
2400
  import-fresh@^2.0.0:
3035
2401
  version "2.0.0"
3036
2402
  resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-2.0.0.tgz#d81355c15612d386c61f9ddd3922d4304822a546"
@@ -3039,28 +2405,14 @@ import-fresh@^2.0.0:
3039
2405
  caller-path "^2.0.0"
3040
2406
  resolve-from "^3.0.0"
3041
2407
 
3042
- import-fresh@^3.0.0, import-fresh@^3.1.0:
3043
- version "3.2.1"
3044
- resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.2.1.tgz#633ff618506e793af5ac91bf48b72677e15cbe66"
3045
- integrity sha512-6e1q1cnWP2RXD9/keSkxHScg508CdXqXWgWBaETNhyuBFz+kUZlKboh+ISK+bU++DmbHimVBrOz/zzPe0sZ3sQ==
2408
+ import-fresh@^3.0.0:
2409
+ version "3.2.2"
2410
+ resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.2.2.tgz#fc129c160c5d68235507f4331a6baad186bdbc3e"
2411
+ integrity sha512-cTPNrlvJT6twpYy+YmKUKrTSjWFs3bjYjAhCwm+z4EOCubZxAuO+hHpRN64TqjEaYSHs7tJAE0w1CKMGmsG/lw==
3046
2412
  dependencies:
3047
2413
  parent-module "^1.0.0"
3048
2414
  resolve-from "^4.0.0"
3049
2415
 
3050
- import-from@^2.1.0:
3051
- version "2.1.0"
3052
- resolved "https://registry.yarnpkg.com/import-from/-/import-from-2.1.0.tgz#335db7f2a7affd53aaa471d4b8021dee36b7f3b1"
3053
- integrity sha1-M1238qev/VOqpHHUuAId7ja387E=
3054
- dependencies:
3055
- resolve-from "^3.0.0"
3056
-
3057
- import-from@^3.0.0:
3058
- version "3.0.0"
3059
- resolved "https://registry.yarnpkg.com/import-from/-/import-from-3.0.0.tgz#055cfec38cd5a27d8057ca51376d7d3bf0891966"
3060
- integrity sha512-CiuXOFFSzkU5x/CR0+z7T91Iht4CXgfCxVOFRhh2Zyhg5wOpWvvDLQUsWl+gcN+QscYBjez8hDCt85O7RLDttQ==
3061
- dependencies:
3062
- resolve-from "^5.0.0"
3063
-
3064
2416
  imurmurhash@^0.1.4:
3065
2417
  version "0.1.4"
3066
2418
  resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea"
@@ -3118,11 +2470,6 @@ ip-regex@^2.1.0:
3118
2470
  resolved "https://registry.yarnpkg.com/ip-regex/-/ip-regex-2.1.0.tgz#fa78bf5d2e6913c911ce9f819ee5146bb6d844e9"
3119
2471
  integrity sha1-+ni/XS5pE8kRzp+BnuUUa7bYROk=
3120
2472
 
3121
- is-absolute-url@^2.0.0:
3122
- version "2.1.0"
3123
- resolved "https://registry.yarnpkg.com/is-absolute-url/-/is-absolute-url-2.1.0.tgz#50530dfb84fcc9aa7dbe7852e83a37b93b9f2aa6"
3124
- integrity sha1-UFMN+4T8yap9vnhS6Do3uTufKqY=
3125
-
3126
2473
  is-alphabetical@^1.0.0:
3127
2474
  version "1.0.4"
3128
2475
  resolved "https://registry.yarnpkg.com/is-alphabetical/-/is-alphabetical-1.0.4.tgz#9e7d6b94916be22153745d184c298cbf986a686d"
@@ -3146,11 +2493,6 @@ is-arrayish@^0.2.1:
3146
2493
  resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d"
3147
2494
  integrity sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=
3148
2495
 
3149
- is-arrayish@^0.3.1:
3150
- version "0.3.2"
3151
- resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.3.2.tgz#4574a2ae56f7ab206896fb431eaeed066fdf8f03"
3152
- integrity sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==
3153
-
3154
2496
  is-binary-path@~2.1.0:
3155
2497
  version "2.1.0"
3156
2498
  resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-2.1.0.tgz#ea1f7f3b80f064236e83470f86c09c254fb45b09"
@@ -3159,9 +2501,9 @@ is-binary-path@~2.1.0:
3159
2501
  binary-extensions "^2.0.0"
3160
2502
 
3161
2503
  is-buffer@^2.0.0:
3162
- version "2.0.4"
3163
- resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-2.0.4.tgz#3e572f23c8411a5cfd9557c849e3665e0b290623"
3164
- integrity sha512-Kq1rokWXOPXWuaMAqZiJW4XxsmD9zGx9q4aePabbn3qCRGedtH7Cm+zV8WETitMfu1wdh+Rvd6w5egwSngUX2A==
2504
+ version "2.0.5"
2505
+ resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-2.0.5.tgz#ebc252e400d22ff8d77fa09888821a24a658c191"
2506
+ integrity sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ==
3165
2507
 
3166
2508
  is-callable@^1.1.4, is-callable@^1.2.2:
3167
2509
  version "1.2.2"
@@ -3175,22 +2517,10 @@ is-ci@2.0.0:
3175
2517
  dependencies:
3176
2518
  ci-info "^2.0.0"
3177
2519
 
3178
- is-color-stop@^1.0.0:
3179
- version "1.1.0"
3180
- resolved "https://registry.yarnpkg.com/is-color-stop/-/is-color-stop-1.1.0.tgz#cfff471aee4dd5c9e158598fbe12967b5cdad345"
3181
- integrity sha1-z/9HGu5N1cnhWFmPvhKWe1za00U=
3182
- dependencies:
3183
- css-color-names "^0.0.4"
3184
- hex-color-regex "^1.1.0"
3185
- hsl-regex "^1.0.0"
3186
- hsla-regex "^1.0.0"
3187
- rgb-regex "^1.0.1"
3188
- rgba-regex "^1.0.0"
3189
-
3190
- is-core-module@^2.0.0:
3191
- version "2.0.0"
3192
- resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.0.0.tgz#58531b70aed1db7c0e8d4eb1a0a2d1ddd64bd12d"
3193
- integrity sha512-jq1AH6C8MuteOoBPwkxHafmByhL9j5q4OaPGdbuD+ZtQJVzH+i6E3BJDQcBA09k57i2Hh2yQbEG8yObZ0jdlWw==
2520
+ is-core-module@^2.1.0:
2521
+ version "2.1.0"
2522
+ resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.1.0.tgz#a4cc031d9b1aca63eecbd18a650e13cb4eeab946"
2523
+ integrity sha512-YcV7BgVMRFRua2FqQzKtTDMz8iCuLEyGKjr70q8Zm1yy2qKcurbFEd79PAdHV77oL3NrAaOVQIbMmiHQCHB7ZA==
3194
2524
  dependencies:
3195
2525
  has "^1.0.3"
3196
2526
 
@@ -3248,11 +2578,6 @@ is-hexadecimal@^1.0.0:
3248
2578
  resolved "https://registry.yarnpkg.com/is-hexadecimal/-/is-hexadecimal-1.0.4.tgz#cc35c97588da4bd49a8eedd6bc4082d44dcb23a7"
3249
2579
  integrity sha512-gyPJuv83bHMpocVYoqof5VDiZveEoGoFL8m3BXNb2VW8Xs+rz9kqO8LOQ5DH6EsuvilT1ApazU0pyl+ytbPtlw==
3250
2580
 
3251
- is-module@^1.0.0:
3252
- version "1.0.0"
3253
- resolved "https://registry.yarnpkg.com/is-module/-/is-module-1.0.0.tgz#3258fb69f78c14d5b815d664336b4cffb6441591"
3254
- integrity sha1-Mlj7afeMFNW4FdZkM2tM/7ZEFZE=
3255
-
3256
2581
  is-nan@^1.2.1:
3257
2582
  version "1.3.0"
3258
2583
  resolved "https://registry.yarnpkg.com/is-nan/-/is-nan-1.3.0.tgz#85d1f5482f7051c2019f5673ccebdb06f3b0db03"
@@ -3275,11 +2600,6 @@ is-obj@^1.0.1:
3275
2600
  resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-1.0.1.tgz#3e4729ac1f5fde025cd7d83a896dab9f4f67db0f"
3276
2601
  integrity sha1-PkcprB9f3gJc19g6iW2rn09n2w8=
3277
2602
 
3278
- is-obj@^2.0.0:
3279
- version "2.0.0"
3280
- resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-2.0.0.tgz#473fb05d973705e3fd9620545018ca8e22ef4982"
3281
- integrity sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==
3282
-
3283
2603
  is-observable@^1.1.0:
3284
2604
  version "1.1.0"
3285
2605
  resolved "https://registry.yarnpkg.com/is-observable/-/is-observable-1.1.0.tgz#b3e986c8f44de950867cab5403f5a3465005975e"
@@ -3312,13 +2632,6 @@ is-promise@^2.1.0:
3312
2632
  resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-2.2.2.tgz#39ab959ccbf9a774cf079f7b40c7a26f763135f1"
3313
2633
  integrity sha512-+lP4/6lKUBfQjZ2pdxThZvLUAafmZb8OAxFb8XXtiQmS35INgr85hdOGoEs124ez1FCnZJt6jau/T+alh58QFQ==
3314
2634
 
3315
- is-reference@^1.1.2:
3316
- version "1.2.1"
3317
- resolved "https://registry.yarnpkg.com/is-reference/-/is-reference-1.2.1.tgz#8b2dac0b371f4bc994fdeaba9eb542d03002d0b7"
3318
- integrity sha512-U82MsXXiFIrjCK4otLT+o2NA2Cd2g5MLoOVXUZjIOhLurrRxpEXzI8O0KZHr3IjLvlAH1kTPYSuqer5T9ZVBKQ==
3319
- dependencies:
3320
- "@types/estree" "*"
3321
-
3322
2635
  is-regex@^1.1.1:
3323
2636
  version "1.1.1"
3324
2637
  resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.1.1.tgz#c6f98aacc546f6cec5468a07b7b153ab564a57b9"
@@ -3331,11 +2644,6 @@ is-regexp@^1.0.0:
3331
2644
  resolved "https://registry.yarnpkg.com/is-regexp/-/is-regexp-1.0.0.tgz#fd2d883545c46bac5a633e7b9a09e87fa2cb5069"
3332
2645
  integrity sha1-/S2INUXEa6xaYz57mgnof6LLUGk=
3333
2646
 
3334
- is-resolvable@^1.0.0:
3335
- version "1.1.0"
3336
- resolved "https://registry.yarnpkg.com/is-resolvable/-/is-resolvable-1.1.0.tgz#fb18f87ce1feb925169c9a407c19318a3206ed88"
3337
- integrity sha512-qgDYXFSR5WvEfuS5dMj6oTMEbrrSaM0CrFk2Yiq/gXnBvD9pMa2jGXxyhGLfvhZpuMZe18CJpFxAt3CRs42NMg==
3338
-
3339
2647
  is-stream@^1.1.0:
3340
2648
  version "1.1.0"
3341
2649
  resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44"
@@ -3346,13 +2654,6 @@ is-stream@^2.0.0:
3346
2654
  resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-2.0.0.tgz#bde9c32680d6fae04129d6ac9d921ce7815f78e3"
3347
2655
  integrity sha512-XCoy+WlUr7d1+Z8GgSuXmpuUFC9fOhRXglJMx+dwLKTkL44Cjd4W1Z5P+BQZpr+cR93aGP4S/s7Ftw6Nd/kiEw==
3348
2656
 
3349
- is-svg@^3.0.0:
3350
- version "3.0.0"
3351
- resolved "https://registry.yarnpkg.com/is-svg/-/is-svg-3.0.0.tgz#9321dbd29c212e5ca99c4fa9794c714bcafa2f75"
3352
- integrity sha512-gi4iHK53LR2ujhLVVj+37Ykh9GLqYHX6JOVXbLAucaG/Cqw9xwdFOjDM2qeifLs1sF1npXXFvDu0r5HNgCMrzQ==
3353
- dependencies:
3354
- html-comment-regex "^1.1.0"
3355
-
3356
2657
  is-symbol@^1.0.2:
3357
2658
  version "1.0.3"
3358
2659
  resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.3.tgz#38e1014b9e6329be0de9d24a414fd7441ec61937"
@@ -3407,14 +2708,6 @@ jest-docblock@25.3.0:
3407
2708
  dependencies:
3408
2709
  detect-newline "^3.0.0"
3409
2710
 
3410
- jest-worker@^24.9.0:
3411
- version "24.9.0"
3412
- resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-24.9.0.tgz#5dbfdb5b2d322e98567898238a9697bcce67b3e5"
3413
- integrity sha512-51PE4haMSXcHohnSMdM42anbvZANYTqMrr52tVKPqqsPJMzoP6FYYDVqahX/HrAoKEKz3uUPzSvKs9A3qR4iVw==
3414
- dependencies:
3415
- merge-stream "^2.0.0"
3416
- supports-color "^6.1.0"
3417
-
3418
2711
  js-base64@^2.1.9:
3419
2712
  version "2.6.4"
3420
2713
  resolved "https://registry.yarnpkg.com/js-base64/-/js-base64-2.6.4.tgz#f4e686c5de1ea1f867dbcad3d46d969428df98c4"
@@ -3485,11 +2778,6 @@ json-parse-better-errors@^1.0.1:
3485
2778
  resolved "https://registry.yarnpkg.com/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz#bb867cfb3450e69107c131d1c514bab3dc8bcaa9"
3486
2779
  integrity sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==
3487
2780
 
3488
- json-parse-even-better-errors@^2.3.0:
3489
- version "2.3.1"
3490
- resolved "https://registry.yarnpkg.com/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz#7c47805a94319928e05777405dc12e1f7a4ee02d"
3491
- integrity sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==
3492
-
3493
2781
  json-schema-traverse@^0.4.1:
3494
2782
  version "0.4.1"
3495
2783
  resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660"
@@ -3517,13 +2805,6 @@ json-stringify-safe@~5.0.1:
3517
2805
  resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb"
3518
2806
  integrity sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus=
3519
2807
 
3520
- json5@^1.0.1:
3521
- version "1.0.1"
3522
- resolved "https://registry.yarnpkg.com/json5/-/json5-1.0.1.tgz#779fb0018604fa854eacbf6252180d83543e3dbe"
3523
- integrity sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==
3524
- dependencies:
3525
- minimist "^1.2.0"
3526
-
3527
2808
  json5@^2.1.2:
3528
2809
  version "2.1.3"
3529
2810
  resolved "https://registry.yarnpkg.com/json5/-/json5-2.1.3.tgz#c9b0f7fa9233bfe5807fe66fcf3a5617ed597d43"
@@ -3531,13 +2812,6 @@ json5@^2.1.2:
3531
2812
  dependencies:
3532
2813
  minimist "^1.2.5"
3533
2814
 
3534
- jsonfile@^4.0.0:
3535
- version "4.0.0"
3536
- resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-4.0.0.tgz#8771aae0799b64076b76640fca058f9c10e33ecb"
3537
- integrity sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss=
3538
- optionalDependencies:
3539
- graceful-fs "^4.1.6"
3540
-
3541
2815
  jsonify@~0.0.0:
3542
2816
  version "0.0.0"
3543
2817
  resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73"
@@ -3553,11 +2827,6 @@ jsprim@^1.2.2:
3553
2827
  json-schema "0.2.3"
3554
2828
  verror "1.10.0"
3555
2829
 
3556
- kleur@^3.0.3:
3557
- version "3.0.3"
3558
- resolved "https://registry.yarnpkg.com/kleur/-/kleur-3.0.3.tgz#a79c9ecc86ee1ce3fa6206d1216c501f147fc07e"
3559
- integrity sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==
3560
-
3561
2830
  leven@3.1.0:
3562
2831
  version "3.1.0"
3563
2832
  resolved "https://registry.yarnpkg.com/leven/-/leven-3.1.0.tgz#77891de834064cccba82ae7842bb6b14a13ed7f2"
@@ -3650,15 +2919,6 @@ listr@^0.14.3:
3650
2919
  p-map "^2.0.0"
3651
2920
  rxjs "^6.3.3"
3652
2921
 
3653
- loader-utils@^1.1.0:
3654
- version "1.4.0"
3655
- resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-1.4.0.tgz#c579b5e34cb34b1a74edc6c1fb36bfa371d5a613"
3656
- integrity sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA==
3657
- dependencies:
3658
- big.js "^5.2.2"
3659
- emojis-list "^3.0.0"
3660
- json5 "^1.0.1"
3661
-
3662
2922
  locate-path@^3.0.0:
3663
2923
  version "3.0.0"
3664
2924
  resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-3.0.0.tgz#dbec3b3ab759758071b58fe59fc41871af21400e"
@@ -3681,21 +2941,6 @@ locate-path@^6.0.0:
3681
2941
  dependencies:
3682
2942
  p-locate "^5.0.0"
3683
2943
 
3684
- lodash.camelcase@^4.3.0:
3685
- version "4.3.0"
3686
- resolved "https://registry.yarnpkg.com/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz#b28aa6288a2b9fc651035c7711f65ab6190331a6"
3687
- integrity sha1-soqmKIorn8ZRA1x3EfZathkDMaY=
3688
-
3689
- lodash.memoize@^4.1.2:
3690
- version "4.1.2"
3691
- resolved "https://registry.yarnpkg.com/lodash.memoize/-/lodash.memoize-4.1.2.tgz#bcc6c49a42a2840ed997f323eada5ecd182e0bfe"
3692
- integrity sha1-vMbEmkKihA7Zl/Mj6tpezRguC/4=
3693
-
3694
- lodash.merge@^4.6.2:
3695
- version "4.6.2"
3696
- resolved "https://registry.yarnpkg.com/lodash.merge/-/lodash.merge-4.6.2.tgz#558aa53b43b661e1925a0afdfa36a9a1085fe57a"
3697
- integrity sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==
3698
-
3699
2944
  lodash.sortby@^4.7.0:
3700
2945
  version "4.7.0"
3701
2946
  resolved "https://registry.yarnpkg.com/lodash.sortby/-/lodash.sortby-4.7.0.tgz#edd14c824e2cc9c1e0b0a1b42bb5210516a42438"
@@ -3706,11 +2951,6 @@ lodash.unescape@4.0.1:
3706
2951
  resolved "https://registry.yarnpkg.com/lodash.unescape/-/lodash.unescape-4.0.1.tgz#bf2249886ce514cda112fae9218cdc065211fc9c"
3707
2952
  integrity sha1-vyJJiGzlFM2hEvrpIYzcBlIR/Jw=
3708
2953
 
3709
- lodash.uniq@^4.5.0:
3710
- version "4.5.0"
3711
- resolved "https://registry.yarnpkg.com/lodash.uniq/-/lodash.uniq-4.5.0.tgz#d0225373aeb652adc1bc82e4945339a842754773"
3712
- integrity sha1-0CJTc662Uq3BvILklFM5qEJ1R3M=
3713
-
3714
2954
  lodash.uniqby@4.7.0:
3715
2955
  version "4.7.0"
3716
2956
  resolved "https://registry.yarnpkg.com/lodash.uniqby/-/lodash.uniqby-4.7.0.tgz#d99c07a669e9e6d24e1362dfe266c67616af1302"
@@ -3759,20 +2999,6 @@ lru-cache@^4.1.5:
3759
2999
  pseudomap "^1.0.2"
3760
3000
  yallist "^2.1.2"
3761
3001
 
3762
- magic-string@^0.22.4:
3763
- version "0.22.5"
3764
- resolved "https://registry.yarnpkg.com/magic-string/-/magic-string-0.22.5.tgz#8e9cf5afddf44385c1da5bc2a6a0dbd10b03657e"
3765
- integrity sha512-oreip9rJZkzvA8Qzk9HFs8fZGF/u7H/gtrE8EN6RjKJ9kh2HlC+yQ2QezifqTZfGyiuAV0dRv5a+y/8gBb1m9w==
3766
- dependencies:
3767
- vlq "^0.2.2"
3768
-
3769
- magic-string@^0.25.2:
3770
- version "0.25.7"
3771
- resolved "https://registry.yarnpkg.com/magic-string/-/magic-string-0.25.7.tgz#3f497d6fd34c669c6798dcb821f2ef31f5445051"
3772
- integrity sha512-4CrMT5DOHTDk4HYDlzmwu4FVCcIYI8gauveasrdCu2IKIFOJ3f0v/8MDGJCDL9oD2ppz/Av1b0Nj345H9M+XIA==
3773
- dependencies:
3774
- sourcemap-codec "^1.4.4"
3775
-
3776
3002
  make-dir@^2.0.0, make-dir@^2.1.0:
3777
3003
  version "2.1.0"
3778
3004
  resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-2.1.0.tgz#5f0310e18b8be898cc07009295a30ae41e91e6f5"
@@ -3781,13 +3007,6 @@ make-dir@^2.0.0, make-dir@^2.1.0:
3781
3007
  pify "^4.0.1"
3782
3008
  semver "^5.6.0"
3783
3009
 
3784
- make-dir@^3.0.2:
3785
- version "3.1.0"
3786
- resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-3.1.0.tgz#415e967046b3a7f1d185277d84aa58203726a13f"
3787
- integrity sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==
3788
- dependencies:
3789
- semver "^6.0.0"
3790
-
3791
3010
  map-age-cleaner@^0.1.3:
3792
3011
  version "0.1.3"
3793
3012
  resolved "https://registry.yarnpkg.com/map-age-cleaner/-/map-age-cleaner-0.1.3.tgz#7d583a7306434c055fe474b0f45078e6e1b4b92a"
@@ -3800,26 +3019,6 @@ markdown-escapes@^1.0.0:
3800
3019
  resolved "https://registry.yarnpkg.com/markdown-escapes/-/markdown-escapes-1.0.4.tgz#c95415ef451499d7602b91095f3c8e8975f78535"
3801
3020
  integrity sha512-8z4efJYk43E0upd0NbVXwgSTQs6cT3T06etieCMEg7dRbzCbxUCK/GHlX8mhHRDcp+OLlHkPKsvqQTCvsRl2cg==
3802
3021
 
3803
- maxmin@^2.1.0:
3804
- version "2.1.0"
3805
- resolved "https://registry.yarnpkg.com/maxmin/-/maxmin-2.1.0.tgz#4d3b220903d95eee7eb7ac7fa864e72dc09a3166"
3806
- integrity sha1-TTsiCQPZXu5+t6x/qGTnLcCaMWY=
3807
- dependencies:
3808
- chalk "^1.0.0"
3809
- figures "^1.0.1"
3810
- gzip-size "^3.0.0"
3811
- pretty-bytes "^3.0.0"
3812
-
3813
- mdn-data@2.0.12:
3814
- version "2.0.12"
3815
- resolved "https://registry.yarnpkg.com/mdn-data/-/mdn-data-2.0.12.tgz#bbb658d08b38f574bbb88f7b83703defdcc46844"
3816
- integrity sha512-ULbAlgzVb8IqZ0Hsxm6hHSlQl3Jckst2YEQS7fODu9ilNWy2LvcoSY7TRFIktABP2mdppBioc66va90T+NUs8Q==
3817
-
3818
- mdn-data@2.0.4:
3819
- version "2.0.4"
3820
- resolved "https://registry.yarnpkg.com/mdn-data/-/mdn-data-2.0.4.tgz#699b3c38ac6f1d728091a64650b65d388502fd5b"
3821
- integrity sha512-iV3XNKw06j5Q7mi6h+9vbx23Tv7JkjEVgKHW4pimwyDGWm0OIQntJJ+u1C6mg6mK1EaTv42XQ7w76yuzH7M2cA==
3822
-
3823
3022
  mem@5.1.1:
3824
3023
  version "5.1.1"
3825
3024
  resolved "https://registry.yarnpkg.com/mem/-/mem-5.1.1.tgz#7059b67bf9ac2c924c9f1cff7155a064394adfb3"
@@ -3839,54 +3038,6 @@ merge2@^1.2.3, merge2@^1.3.0:
3839
3038
  resolved "https://registry.yarnpkg.com/merge2/-/merge2-1.4.1.tgz#4368892f885e907455a6fd7dc55c0c9d404990ae"
3840
3039
  integrity sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==
3841
3040
 
3842
- microbundle@^0.12.3:
3843
- version "0.12.4"
3844
- resolved "https://registry.yarnpkg.com/microbundle/-/microbundle-0.12.4.tgz#b0cf10b7dbcf9424a13b04086aef9cbf416756a4"
3845
- integrity sha512-KskaxaeJc2X/AnohtdYo97L55nZZiNGPIS/ngXuDsIVnPfwHdtZWYJAJLAG+08E9VBr+eLa6N6VX+e2uoj/cNQ==
3846
- dependencies:
3847
- "@babel/core" "^7.10.2"
3848
- "@babel/plugin-proposal-class-properties" "7.7.4"
3849
- "@babel/plugin-syntax-import-meta" "^7.10.1"
3850
- "@babel/plugin-syntax-jsx" "^7.10.1"
3851
- "@babel/plugin-transform-flow-strip-types" "^7.10.1"
3852
- "@babel/plugin-transform-react-jsx" "^7.10.1"
3853
- "@babel/plugin-transform-regenerator" "^7.10.1"
3854
- "@babel/preset-env" "^7.11.0"
3855
- "@babel/preset-flow" "^7.10.1"
3856
- "@babel/preset-react" "^7.10.4"
3857
- "@rollup/plugin-alias" "^3.1.1"
3858
- "@rollup/plugin-babel" "^5.0.3"
3859
- "@rollup/plugin-commonjs" "^13.0.0"
3860
- "@rollup/plugin-json" "^4.1.0"
3861
- "@rollup/plugin-node-resolve" "^6.1.0"
3862
- asyncro "^3.0.0"
3863
- autoprefixer "^9.8.0"
3864
- babel-plugin-macros "^2.8.0"
3865
- babel-plugin-transform-async-to-promises "^0.8.15"
3866
- babel-plugin-transform-replace-expressions "^0.2.0"
3867
- brotli-size "^4.0.0"
3868
- builtin-modules "^3.1.0"
3869
- camelcase "^5.3.1"
3870
- cssnano "^4.1.10"
3871
- es6-promisify "^6.1.1"
3872
- escape-string-regexp "^4.0.0"
3873
- filesize "^6.1.0"
3874
- gzip-size "^5.1.1"
3875
- kleur "^3.0.3"
3876
- lodash.merge "^4.6.2"
3877
- module-details-from-path "^1.0.3"
3878
- pretty-bytes "^5.3.0"
3879
- rollup "^1.32.1"
3880
- rollup-plugin-bundle-size "^1.0.1"
3881
- rollup-plugin-es3 "^1.1.0"
3882
- rollup-plugin-postcss "^2.9.0"
3883
- rollup-plugin-terser "^5.3.0"
3884
- rollup-plugin-typescript2 "^0.25.3"
3885
- sade "^1.7.3"
3886
- tiny-glob "^0.2.6"
3887
- tslib "^1.13.0"
3888
- typescript "^3.9.5"
3889
-
3890
3041
  micromatch@^4.0.2:
3891
3042
  version "4.0.2"
3892
3043
  resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.2.tgz#4fcb0999bf9fbc2fcbdd212f6d629b9a56c39259"
@@ -3924,12 +3075,12 @@ minimatch@3.0.4, minimatch@^3.0.4:
3924
3075
  dependencies:
3925
3076
  brace-expansion "^1.1.7"
3926
3077
 
3927
- minimist@1.2.5, minimist@^1.2.0, minimist@^1.2.5:
3078
+ minimist@1.2.5, minimist@^1.2.5:
3928
3079
  version "1.2.5"
3929
3080
  resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.5.tgz#67d66014b66a6a8aaa0c083c5fd58df4e4e97602"
3930
3081
  integrity sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==
3931
3082
 
3932
- mkdirp@^0.5.1, mkdirp@~0.5.1:
3083
+ mkdirp@^0.5.1:
3933
3084
  version "0.5.5"
3934
3085
  resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.5.tgz#d91cefd62d1436ca0f41620e251288d420099def"
3935
3086
  integrity sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ==
@@ -3937,9 +3088,9 @@ mkdirp@^0.5.1, mkdirp@~0.5.1:
3937
3088
  minimist "^1.2.5"
3938
3089
 
3939
3090
  mocha@^8.0.1:
3940
- version "8.2.0"
3941
- resolved "https://registry.yarnpkg.com/mocha/-/mocha-8.2.0.tgz#f8aa79110b4b5a6580c65d4dd8083c425282624e"
3942
- integrity sha512-lEWEMq2LMfNJMKeuEwb5UELi+OgFDollXaytR5ggQcHpzG3NP/R7rvixAvF+9/lLsTWhWG+4yD2M70GsM06nxw==
3091
+ version "8.2.1"
3092
+ resolved "https://registry.yarnpkg.com/mocha/-/mocha-8.2.1.tgz#f2fa68817ed0e53343d989df65ccd358bc3a4b39"
3093
+ integrity sha512-cuLBVfyFfFqbNR0uUKbDGXKGk+UDFe6aR4os78XIrMQpZl/nv7JYHcvP5MFIAb374b2zFXsdgEGwmzMtP0Xg8w==
3943
3094
  dependencies:
3944
3095
  "@ungap/promise-all-settled" "1.1.2"
3945
3096
  ansi-colors "4.1.1"
@@ -3967,17 +3118,12 @@ mocha@^8.0.1:
3967
3118
  yargs-parser "13.1.2"
3968
3119
  yargs-unparser "2.0.0"
3969
3120
 
3970
- module-details-from-path@^1.0.3:
3971
- version "1.0.3"
3972
- resolved "https://registry.yarnpkg.com/module-details-from-path/-/module-details-from-path-1.0.3.tgz#114c949673e2a8a35e9d35788527aa37b679da2b"
3973
- integrity sha1-EUyUlnPiqKNenTV4hSeqN7Z52is=
3974
-
3975
3121
  morphdom@^2.6.1:
3976
3122
  version "2.6.1"
3977
3123
  resolved "https://registry.yarnpkg.com/morphdom/-/morphdom-2.6.1.tgz#e868e24f989fa3183004b159aed643e628b4306e"
3978
3124
  integrity sha512-Y8YRbAEP3eKykroIBWrjcfMw7mmwJfjhqdpSvoqinu8Y702nAwikpXcNFDiIkyvfCLxLM9Wu95RZqo4a9jFBaA==
3979
3125
 
3980
- mri@^1.1.0, mri@^1.1.5:
3126
+ mri@^1.1.5:
3981
3127
  version "1.1.6"
3982
3128
  resolved "https://registry.yarnpkg.com/mri/-/mri-1.1.6.tgz#49952e1044db21dbf90f6cd92bc9c9a777d415a6"
3983
3129
  integrity sha512-oi1b3MfbyGa7FJMP9GmLTttni5JoICpYBRlq+x5V16fZbLsnL9N3wFqqIm/nIG43FjUFkFh9Epzp/kzUGUnJxQ==
@@ -4032,26 +3178,16 @@ node-modules-regexp@^1.0.0:
4032
3178
  resolved "https://registry.yarnpkg.com/node-modules-regexp/-/node-modules-regexp-1.0.0.tgz#8d9dbe28964a4ac5712e9131642107c71e90ec40"
4033
3179
  integrity sha1-jZ2+KJZKSsVxLpExZCEHxx6Q7EA=
4034
3180
 
4035
- node-releases@^1.1.61:
4036
- version "1.1.64"
4037
- resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.64.tgz#71b4ae988e9b1dd7c1ffce58dd9e561752dfebc5"
4038
- integrity sha512-Iec8O9166/x2HRMJyLLLWkd0sFFLrFNy+Xf+JQfSQsdBJzPcHpNl3JQ9gD4j+aJxmCa25jNsIbM4bmACtSbkSg==
3181
+ node-releases@^1.1.66:
3182
+ version "1.1.67"
3183
+ resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.67.tgz#28ebfcccd0baa6aad8e8d4d8fe4cbc49ae239c12"
3184
+ integrity sha512-V5QF9noGFl3EymEwUYzO+3NTDpGfQB4ve6Qfnzf3UNydMhjQRVPR1DZTuvWiLzaFJYw2fmDwAfnRNEVb64hSIg==
4039
3185
 
4040
3186
  normalize-path@3.0.0, normalize-path@^3.0.0, normalize-path@~3.0.0:
4041
3187
  version "3.0.0"
4042
3188
  resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65"
4043
3189
  integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==
4044
3190
 
4045
- normalize-range@^0.1.2:
4046
- version "0.1.2"
4047
- resolved "https://registry.yarnpkg.com/normalize-range/-/normalize-range-0.1.2.tgz#2d10c06bdfd312ea9777695a4d28439456b75942"
4048
- integrity sha1-LRDAa9/TEuqXd2laTShDlFa3WUI=
4049
-
4050
- normalize-url@^3.0.0:
4051
- version "3.3.0"
4052
- resolved "https://registry.yarnpkg.com/normalize-url/-/normalize-url-3.3.0.tgz#b2e1c4dc4f7c6d57743df733a4f5978d18650559"
4053
- integrity sha512-U+JJi7duF1o+u2pynbp2zXDW2/PADgC30f0GsHZtRh+HOcXHnw137TrNlyxxRvWW5fjKd3bcLHPxofWuCjaeZg==
4054
-
4055
3191
  npm-run-path@^3.0.0:
4056
3192
  version "3.1.0"
4057
3193
  resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-3.1.0.tgz#7f91be317f6a466efed3c9f2980ad8a4ee8b0fa5"
@@ -4059,18 +3195,6 @@ npm-run-path@^3.0.0:
4059
3195
  dependencies:
4060
3196
  path-key "^3.0.0"
4061
3197
 
4062
- nth-check@^1.0.2:
4063
- version "1.0.2"
4064
- resolved "https://registry.yarnpkg.com/nth-check/-/nth-check-1.0.2.tgz#b2bd295c37e3dd58a3bf0700376663ba4d9cf05c"
4065
- integrity sha512-WeBOdju8SnzPN5vTUJYxYUxLeXpCaVP5i5e0LF8fg7WORF2Wd7wFX/pk0tYZk7s8T+J7VLy0Da6J1+wCT0AtHg==
4066
- dependencies:
4067
- boolbase "~1.0.0"
4068
-
4069
- num2fraction@^1.2.2:
4070
- version "1.2.2"
4071
- resolved "https://registry.yarnpkg.com/num2fraction/-/num2fraction-1.2.2.tgz#6f682b6a027a4e9ddfa4564cd2589d1d4e669ede"
4072
- integrity sha1-b2gragJ6Tp3fpFZM0lidHU5mnt4=
4073
-
4074
3198
  number-is-nan@^1.0.0:
4075
3199
  version "1.0.1"
4076
3200
  resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d"
@@ -4110,33 +3234,15 @@ object-keys@^1.0.12, object-keys@^1.1.1:
4110
3234
  integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==
4111
3235
 
4112
3236
  object.assign@^4.1.0, object.assign@^4.1.1:
4113
- version "4.1.1"
4114
- resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.1.tgz#303867a666cdd41936ecdedfb1f8f3e32a478cdd"
4115
- integrity sha512-VT/cxmx5yaoHSOTSyrCygIDFco+RsibY2NM0a4RdEeY/4KgqezwFtK1yr3U67xYhqJSlASm2pKhLVzPj2lr4bA==
3237
+ version "4.1.2"
3238
+ resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.2.tgz#0ed54a342eceb37b38ff76eb831a0e788cb63940"
3239
+ integrity sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ==
4116
3240
  dependencies:
3241
+ call-bind "^1.0.0"
4117
3242
  define-properties "^1.1.3"
4118
- es-abstract "^1.18.0-next.0"
4119
3243
  has-symbols "^1.0.1"
4120
3244
  object-keys "^1.1.1"
4121
3245
 
4122
- object.getownpropertydescriptors@^2.1.0:
4123
- version "2.1.0"
4124
- resolved "https://registry.yarnpkg.com/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.0.tgz#369bf1f9592d8ab89d712dced5cb81c7c5352649"
4125
- integrity sha512-Z53Oah9A3TdLoblT7VKJaTDdXdT+lQO+cNpKVnya5JDe9uLvzu1YyY1yFDFrcxrlRgWrEFH0jJtD/IbuwjcEVg==
4126
- dependencies:
4127
- define-properties "^1.1.3"
4128
- es-abstract "^1.17.0-next.1"
4129
-
4130
- object.values@^1.1.0:
4131
- version "1.1.1"
4132
- resolved "https://registry.yarnpkg.com/object.values/-/object.values-1.1.1.tgz#68a99ecde356b7e9295a3c5e0ce31dc8c953de5e"
4133
- integrity sha512-WTa54g2K8iu0kmS/us18jEmdv1a4Wi//BZ/DTVYEcH0XhLM5NYdpDHja3gt57VrZLcNAO2WGA+KpWsDBaHt6eA==
4134
- dependencies:
4135
- define-properties "^1.1.3"
4136
- es-abstract "^1.17.0-next.1"
4137
- function-bind "^1.1.1"
4138
- has "^1.0.3"
4139
-
4140
3246
  once@^1.3.0, once@^1.3.1, once@^1.4.0:
4141
3247
  version "1.4.0"
4142
3248
  resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1"
@@ -4180,11 +3286,6 @@ p-defer@^1.0.0:
4180
3286
  resolved "https://registry.yarnpkg.com/p-defer/-/p-defer-1.0.0.tgz#9f6eb182f6c9aa8cd743004a7d4f96b196b0fb0c"
4181
3287
  integrity sha1-n26xgvbJqozXQwBKfU+WsZaw+ww=
4182
3288
 
4183
- p-finally@^1.0.0:
4184
- version "1.0.0"
4185
- resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae"
4186
- integrity sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4=
4187
-
4188
3289
  p-finally@^2.0.0:
4189
3290
  version "2.0.1"
4190
3291
  resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-2.0.1.tgz#bd6fcaa9c559a096b680806f4d657b3f0f240561"
@@ -4203,11 +3304,11 @@ p-limit@^2.0.0, p-limit@^2.2.0:
4203
3304
  p-try "^2.0.0"
4204
3305
 
4205
3306
  p-limit@^3.0.2:
4206
- version "3.0.2"
4207
- resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-3.0.2.tgz#1664e010af3cadc681baafd3e2a437be7b0fb5fe"
4208
- integrity sha512-iwqZSOoWIW+Ew4kAGUlN16J4M7OB3ysMLSZtnhmqx7njIHFPlxWBX8xo3lVTyFVq6mI/lL9qt2IsN1sHwaxJkg==
3307
+ version "3.1.0"
3308
+ resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-3.1.0.tgz#e1daccbe78d0d1388ca18c64fea38e3e57e3706b"
3309
+ integrity sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==
4209
3310
  dependencies:
4210
- p-try "^2.0.0"
3311
+ yocto-queue "^0.1.0"
4211
3312
 
4212
3313
  p-locate@^3.0.0:
4213
3314
  version "3.0.0"
@@ -4242,21 +3343,6 @@ p-map@^3.0.0:
4242
3343
  dependencies:
4243
3344
  aggregate-error "^3.0.0"
4244
3345
 
4245
- p-queue@^6.3.0:
4246
- version "6.6.2"
4247
- resolved "https://registry.yarnpkg.com/p-queue/-/p-queue-6.6.2.tgz#2068a9dcf8e67dd0ec3e7a2bcb76810faa85e426"
4248
- integrity sha512-RwFpb72c/BhQLEXIZ5K2e+AhgNVmIejGlTgiB9MzZ0e93GRvqZ7uSi0dvRF7/XIXDeNkra2fNHBxTyPDGySpjQ==
4249
- dependencies:
4250
- eventemitter3 "^4.0.4"
4251
- p-timeout "^3.2.0"
4252
-
4253
- p-timeout@^3.2.0:
4254
- version "3.2.0"
4255
- resolved "https://registry.yarnpkg.com/p-timeout/-/p-timeout-3.2.0.tgz#c7e17abc971d2a7962ef83626b35d635acf23dfe"
4256
- integrity sha512-rhIwUycgwwKcP9yTOOFK/AKsAopjjCakVqLHePO3CC6Mir1Z99xT+R63jZxAT5lFZLa2inS5h+ZS2GvR99/FBg==
4257
- dependencies:
4258
- p-finally "^1.0.0"
4259
-
4260
3346
  p-try@^2.0.0:
4261
3347
  version "2.2.0"
4262
3348
  resolved "https://registry.yarnpkg.com/p-try/-/p-try-2.2.0.tgz#cb2868540e313d61de58fafbe35ce9004d5540e6"
@@ -4289,16 +3375,6 @@ parse-json@^4.0.0:
4289
3375
  error-ex "^1.3.1"
4290
3376
  json-parse-better-errors "^1.0.1"
4291
3377
 
4292
- parse-json@^5.0.0:
4293
- version "5.1.0"
4294
- resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-5.1.0.tgz#f96088cdf24a8faa9aea9a009f2d9d942c999646"
4295
- integrity sha512-+mi/lmVVNKFNVyLXV31ERiy2CY5E1/F6QtJFEzoChPRwwngMNXRDQ9GJ5WdE2Z2P4AujsOi0/+2qHID68KwfIQ==
4296
- dependencies:
4297
- "@babel/code-frame" "^7.0.0"
4298
- error-ex "^1.3.1"
4299
- json-parse-even-better-errors "^2.3.0"
4300
- lines-and-columns "^1.1.6"
4301
-
4302
3378
  parse-srcset@1.0.2:
4303
3379
  version "1.0.2"
4304
3380
  resolved "https://registry.yarnpkg.com/parse-srcset/-/parse-srcset-1.0.2.tgz#f2bd221f6cc970a938d88556abc589caaaa2bde1"
@@ -4349,7 +3425,7 @@ performance-now@^2.1.0:
4349
3425
  resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-2.1.0.tgz#6309f4e0e5fa913ec1c69307ae364b4b377c9e7b"
4350
3426
  integrity sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns=
4351
3427
 
4352
- picomatch@^2.0.4, picomatch@^2.0.5, picomatch@^2.2.1, picomatch@^2.2.2:
3428
+ picomatch@^2.0.4, picomatch@^2.0.5, picomatch@^2.2.1:
4353
3429
  version "2.2.2"
4354
3430
  resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.2.2.tgz#21f333e9b6b8eaff02468f5146ea406d345f4dad"
4355
3431
  integrity sha512-q0M/9eZHzmr0AulXyPwNfZjtwZ/RBZlbN3K3CErVrk50T2ASYI7Bye0EvekFY3IP1Nt2DHu0re+V2ZHIpMkuWg==
@@ -4364,11 +3440,6 @@ pify@^4.0.1:
4364
3440
  resolved "https://registry.yarnpkg.com/pify/-/pify-4.0.1.tgz#4b2cd25c50d598735c50292224fd8c6df41e3231"
4365
3441
  integrity sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==
4366
3442
 
4367
- pify@^5.0.0:
4368
- version "5.0.0"
4369
- resolved "https://registry.yarnpkg.com/pify/-/pify-5.0.0.tgz#1f5eca3f5e87ebec28cc6d54a0e4aaf00acc127f"
4370
- integrity sha512-eW/gHNMlxdSP6dmG6uJip6FXN0EQBwm2clYYd8Wul42Cwu/DK8HEftzsapcNdYe2MfLiIwZqsDk2RDEsTE79hA==
4371
-
4372
3443
  pinkie-promise@^2.0.0:
4373
3444
  version "2.0.1"
4374
3445
  resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa"
@@ -4395,13 +3466,6 @@ pkg-dir@^3.0.0:
4395
3466
  dependencies:
4396
3467
  find-up "^3.0.0"
4397
3468
 
4398
- pkg-dir@^4.1.0:
4399
- version "4.2.0"
4400
- resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-4.2.0.tgz#f099133df7ede422e81d1d8448270eeb3e4261f3"
4401
- integrity sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==
4402
- dependencies:
4403
- find-up "^4.0.0"
4404
-
4405
3469
  please-upgrade-node@^3.1.1:
4406
3470
  version "3.2.0"
4407
3471
  resolved "https://registry.yarnpkg.com/please-upgrade-node/-/please-upgrade-node-3.2.0.tgz#aeddd3f994c933e4ad98b99d9a556efa0e2fe942"
@@ -4409,62 +3473,6 @@ please-upgrade-node@^3.1.1:
4409
3473
  dependencies:
4410
3474
  semver-compare "^1.0.0"
4411
3475
 
4412
- postcss-calc@^7.0.1:
4413
- version "7.0.5"
4414
- resolved "https://registry.yarnpkg.com/postcss-calc/-/postcss-calc-7.0.5.tgz#f8a6e99f12e619c2ebc23cf6c486fdc15860933e"
4415
- integrity sha512-1tKHutbGtLtEZF6PT4JSihCHfIVldU72mZ8SdZHIYriIZ9fh9k9aWSppaT8rHsyI3dX+KSR+W+Ix9BMY3AODrg==
4416
- dependencies:
4417
- postcss "^7.0.27"
4418
- postcss-selector-parser "^6.0.2"
4419
- postcss-value-parser "^4.0.2"
4420
-
4421
- postcss-colormin@^4.0.3:
4422
- version "4.0.3"
4423
- resolved "https://registry.yarnpkg.com/postcss-colormin/-/postcss-colormin-4.0.3.tgz#ae060bce93ed794ac71264f08132d550956bd381"
4424
- integrity sha512-WyQFAdDZpExQh32j0U0feWisZ0dmOtPl44qYmJKkq9xFWY3p+4qnRzCHeNrkeRhwPHz9bQ3mo0/yVkaply0MNw==
4425
- dependencies:
4426
- browserslist "^4.0.0"
4427
- color "^3.0.0"
4428
- has "^1.0.0"
4429
- postcss "^7.0.0"
4430
- postcss-value-parser "^3.0.0"
4431
-
4432
- postcss-convert-values@^4.0.1:
4433
- version "4.0.1"
4434
- resolved "https://registry.yarnpkg.com/postcss-convert-values/-/postcss-convert-values-4.0.1.tgz#ca3813ed4da0f812f9d43703584e449ebe189a7f"
4435
- integrity sha512-Kisdo1y77KUC0Jmn0OXU/COOJbzM8cImvw1ZFsBgBgMgb1iL23Zs/LXRe3r+EZqM3vGYKdQ2YJVQ5VkJI+zEJQ==
4436
- dependencies:
4437
- postcss "^7.0.0"
4438
- postcss-value-parser "^3.0.0"
4439
-
4440
- postcss-discard-comments@^4.0.2:
4441
- version "4.0.2"
4442
- resolved "https://registry.yarnpkg.com/postcss-discard-comments/-/postcss-discard-comments-4.0.2.tgz#1fbabd2c246bff6aaad7997b2b0918f4d7af4033"
4443
- integrity sha512-RJutN259iuRf3IW7GZyLM5Sw4GLTOH8FmsXBnv8Ab/Tc2k4SR4qbV4DNbyyY4+Sjo362SyDmW2DQ7lBSChrpkg==
4444
- dependencies:
4445
- postcss "^7.0.0"
4446
-
4447
- postcss-discard-duplicates@^4.0.2:
4448
- version "4.0.2"
4449
- resolved "https://registry.yarnpkg.com/postcss-discard-duplicates/-/postcss-discard-duplicates-4.0.2.tgz#3fe133cd3c82282e550fc9b239176a9207b784eb"
4450
- integrity sha512-ZNQfR1gPNAiXZhgENFfEglF93pciw0WxMkJeVmw8eF+JZBbMD7jp6C67GqJAXVZP2BWbOztKfbsdmMp/k8c6oQ==
4451
- dependencies:
4452
- postcss "^7.0.0"
4453
-
4454
- postcss-discard-empty@^4.0.1:
4455
- version "4.0.1"
4456
- resolved "https://registry.yarnpkg.com/postcss-discard-empty/-/postcss-discard-empty-4.0.1.tgz#c8c951e9f73ed9428019458444a02ad90bb9f765"
4457
- integrity sha512-B9miTzbznhDjTfjvipfHoqbWKwd0Mj+/fL5s1QOz06wufguil+Xheo4XpOnc4NqKYBCNqqEzgPv2aPBIJLox0w==
4458
- dependencies:
4459
- postcss "^7.0.0"
4460
-
4461
- postcss-discard-overridden@^4.0.1:
4462
- version "4.0.1"
4463
- resolved "https://registry.yarnpkg.com/postcss-discard-overridden/-/postcss-discard-overridden-4.0.1.tgz#652aef8a96726f029f5e3e00146ee7a4e755ff57"
4464
- integrity sha512-IYY2bEDD7g1XM1IDEsUT4//iEYCxAmP5oDSFMVU/JVvT7gh+l4fmjciLqGgwjdWpQIdb0Che2VX00QObS5+cTg==
4465
- dependencies:
4466
- postcss "^7.0.0"
4467
-
4468
3476
  postcss-less@2.0.0:
4469
3477
  version "2.0.0"
4470
3478
  resolved "https://registry.yarnpkg.com/postcss-less/-/postcss-less-2.0.0.tgz#5d190b8e057ca446d60fe2e2587ad791c9029fb8"
@@ -4472,233 +3480,11 @@ postcss-less@2.0.0:
4472
3480
  dependencies:
4473
3481
  postcss "^5.2.16"
4474
3482
 
4475
- postcss-load-config@^2.1.0:
4476
- version "2.1.2"
4477
- resolved "https://registry.yarnpkg.com/postcss-load-config/-/postcss-load-config-2.1.2.tgz#c5ea504f2c4aef33c7359a34de3573772ad7502a"
4478
- integrity sha512-/rDeGV6vMUo3mwJZmeHfEDvwnTKKqQ0S7OHUi/kJvvtx3aWtyWG2/0ZWnzCt2keEclwN6Tf0DST2v9kITdOKYw==
4479
- dependencies:
4480
- cosmiconfig "^5.0.0"
4481
- import-cwd "^2.0.0"
4482
-
4483
3483
  postcss-media-query-parser@0.2.3:
4484
3484
  version "0.2.3"
4485
3485
  resolved "https://registry.yarnpkg.com/postcss-media-query-parser/-/postcss-media-query-parser-0.2.3.tgz#27b39c6f4d94f81b1a73b8f76351c609e5cef244"
4486
3486
  integrity sha1-J7Ocb02U+Bsac7j3Y1HGCeXO8kQ=
4487
3487
 
4488
- postcss-merge-longhand@^4.0.11:
4489
- version "4.0.11"
4490
- resolved "https://registry.yarnpkg.com/postcss-merge-longhand/-/postcss-merge-longhand-4.0.11.tgz#62f49a13e4a0ee04e7b98f42bb16062ca2549e24"
4491
- integrity sha512-alx/zmoeXvJjp7L4mxEMjh8lxVlDFX1gqWHzaaQewwMZiVhLo42TEClKaeHbRf6J7j82ZOdTJ808RtN0ZOZwvw==
4492
- dependencies:
4493
- css-color-names "0.0.4"
4494
- postcss "^7.0.0"
4495
- postcss-value-parser "^3.0.0"
4496
- stylehacks "^4.0.0"
4497
-
4498
- postcss-merge-rules@^4.0.3:
4499
- version "4.0.3"
4500
- resolved "https://registry.yarnpkg.com/postcss-merge-rules/-/postcss-merge-rules-4.0.3.tgz#362bea4ff5a1f98e4075a713c6cb25aefef9a650"
4501
- integrity sha512-U7e3r1SbvYzO0Jr3UT/zKBVgYYyhAz0aitvGIYOYK5CPmkNih+WDSsS5tvPrJ8YMQYlEMvsZIiqmn7HdFUaeEQ==
4502
- dependencies:
4503
- browserslist "^4.0.0"
4504
- caniuse-api "^3.0.0"
4505
- cssnano-util-same-parent "^4.0.0"
4506
- postcss "^7.0.0"
4507
- postcss-selector-parser "^3.0.0"
4508
- vendors "^1.0.0"
4509
-
4510
- postcss-minify-font-values@^4.0.2:
4511
- version "4.0.2"
4512
- resolved "https://registry.yarnpkg.com/postcss-minify-font-values/-/postcss-minify-font-values-4.0.2.tgz#cd4c344cce474343fac5d82206ab2cbcb8afd5a6"
4513
- integrity sha512-j85oO6OnRU9zPf04+PZv1LYIYOprWm6IA6zkXkrJXyRveDEuQggG6tvoy8ir8ZwjLxLuGfNkCZEQG7zan+Hbtg==
4514
- dependencies:
4515
- postcss "^7.0.0"
4516
- postcss-value-parser "^3.0.0"
4517
-
4518
- postcss-minify-gradients@^4.0.2:
4519
- version "4.0.2"
4520
- resolved "https://registry.yarnpkg.com/postcss-minify-gradients/-/postcss-minify-gradients-4.0.2.tgz#93b29c2ff5099c535eecda56c4aa6e665a663471"
4521
- integrity sha512-qKPfwlONdcf/AndP1U8SJ/uzIJtowHlMaSioKzebAXSG4iJthlWC9iSWznQcX4f66gIWX44RSA841HTHj3wK+Q==
4522
- dependencies:
4523
- cssnano-util-get-arguments "^4.0.0"
4524
- is-color-stop "^1.0.0"
4525
- postcss "^7.0.0"
4526
- postcss-value-parser "^3.0.0"
4527
-
4528
- postcss-minify-params@^4.0.2:
4529
- version "4.0.2"
4530
- resolved "https://registry.yarnpkg.com/postcss-minify-params/-/postcss-minify-params-4.0.2.tgz#6b9cef030c11e35261f95f618c90036d680db874"
4531
- integrity sha512-G7eWyzEx0xL4/wiBBJxJOz48zAKV2WG3iZOqVhPet/9geefm/Px5uo1fzlHu+DOjT+m0Mmiz3jkQzVHe6wxAWg==
4532
- dependencies:
4533
- alphanum-sort "^1.0.0"
4534
- browserslist "^4.0.0"
4535
- cssnano-util-get-arguments "^4.0.0"
4536
- postcss "^7.0.0"
4537
- postcss-value-parser "^3.0.0"
4538
- uniqs "^2.0.0"
4539
-
4540
- postcss-minify-selectors@^4.0.2:
4541
- version "4.0.2"
4542
- resolved "https://registry.yarnpkg.com/postcss-minify-selectors/-/postcss-minify-selectors-4.0.2.tgz#e2e5eb40bfee500d0cd9243500f5f8ea4262fbd8"
4543
- integrity sha512-D5S1iViljXBj9kflQo4YutWnJmwm8VvIsU1GeXJGiG9j8CIg9zs4voPMdQDUmIxetUOh60VilsNzCiAFTOqu3g==
4544
- dependencies:
4545
- alphanum-sort "^1.0.0"
4546
- has "^1.0.0"
4547
- postcss "^7.0.0"
4548
- postcss-selector-parser "^3.0.0"
4549
-
4550
- postcss-modules-extract-imports@1.1.0:
4551
- version "1.1.0"
4552
- resolved "https://registry.yarnpkg.com/postcss-modules-extract-imports/-/postcss-modules-extract-imports-1.1.0.tgz#b614c9720be6816eaee35fb3a5faa1dba6a05ddb"
4553
- integrity sha1-thTJcgvmgW6u41+zpfqh26agXds=
4554
- dependencies:
4555
- postcss "^6.0.1"
4556
-
4557
- postcss-modules-local-by-default@1.2.0:
4558
- version "1.2.0"
4559
- resolved "https://registry.yarnpkg.com/postcss-modules-local-by-default/-/postcss-modules-local-by-default-1.2.0.tgz#f7d80c398c5a393fa7964466bd19500a7d61c069"
4560
- integrity sha1-99gMOYxaOT+nlkRmvRlQCn1hwGk=
4561
- dependencies:
4562
- css-selector-tokenizer "^0.7.0"
4563
- postcss "^6.0.1"
4564
-
4565
- postcss-modules-scope@1.1.0:
4566
- version "1.1.0"
4567
- resolved "https://registry.yarnpkg.com/postcss-modules-scope/-/postcss-modules-scope-1.1.0.tgz#d6ea64994c79f97b62a72b426fbe6056a194bb90"
4568
- integrity sha1-1upkmUx5+XtipytCb75gVqGUu5A=
4569
- dependencies:
4570
- css-selector-tokenizer "^0.7.0"
4571
- postcss "^6.0.1"
4572
-
4573
- postcss-modules-values@1.3.0:
4574
- version "1.3.0"
4575
- resolved "https://registry.yarnpkg.com/postcss-modules-values/-/postcss-modules-values-1.3.0.tgz#ecffa9d7e192518389f42ad0e83f72aec456ea20"
4576
- integrity sha1-7P+p1+GSUYOJ9CrQ6D9yrsRW6iA=
4577
- dependencies:
4578
- icss-replace-symbols "^1.1.0"
4579
- postcss "^6.0.1"
4580
-
4581
- postcss-modules@^2.0.0:
4582
- version "2.0.0"
4583
- resolved "https://registry.yarnpkg.com/postcss-modules/-/postcss-modules-2.0.0.tgz#473d0d7326651d8408585c2a154115d5cb36cce0"
4584
- integrity sha512-eqp+Bva+U2cwQO7dECJ8/V+X+uH1HduNeITB0CPPFAu6d/8LKQ32/j+p9rQ2YL1QytVcrNU0X+fBqgGmQIA1Rw==
4585
- dependencies:
4586
- css-modules-loader-core "^1.1.0"
4587
- generic-names "^2.0.1"
4588
- lodash.camelcase "^4.3.0"
4589
- postcss "^7.0.1"
4590
- string-hash "^1.1.1"
4591
-
4592
- postcss-normalize-charset@^4.0.1:
4593
- version "4.0.1"
4594
- resolved "https://registry.yarnpkg.com/postcss-normalize-charset/-/postcss-normalize-charset-4.0.1.tgz#8b35add3aee83a136b0471e0d59be58a50285dd4"
4595
- integrity sha512-gMXCrrlWh6G27U0hF3vNvR3w8I1s2wOBILvA87iNXaPvSNo5uZAMYsZG7XjCUf1eVxuPfyL4TJ7++SGZLc9A3g==
4596
- dependencies:
4597
- postcss "^7.0.0"
4598
-
4599
- postcss-normalize-display-values@^4.0.2:
4600
- version "4.0.2"
4601
- resolved "https://registry.yarnpkg.com/postcss-normalize-display-values/-/postcss-normalize-display-values-4.0.2.tgz#0dbe04a4ce9063d4667ed2be476bb830c825935a"
4602
- integrity sha512-3F2jcsaMW7+VtRMAqf/3m4cPFhPD3EFRgNs18u+k3lTJJlVe7d0YPO+bnwqo2xg8YiRpDXJI2u8A0wqJxMsQuQ==
4603
- dependencies:
4604
- cssnano-util-get-match "^4.0.0"
4605
- postcss "^7.0.0"
4606
- postcss-value-parser "^3.0.0"
4607
-
4608
- postcss-normalize-positions@^4.0.2:
4609
- version "4.0.2"
4610
- resolved "https://registry.yarnpkg.com/postcss-normalize-positions/-/postcss-normalize-positions-4.0.2.tgz#05f757f84f260437378368a91f8932d4b102917f"
4611
- integrity sha512-Dlf3/9AxpxE+NF1fJxYDeggi5WwV35MXGFnnoccP/9qDtFrTArZ0D0R+iKcg5WsUd8nUYMIl8yXDCtcrT8JrdA==
4612
- dependencies:
4613
- cssnano-util-get-arguments "^4.0.0"
4614
- has "^1.0.0"
4615
- postcss "^7.0.0"
4616
- postcss-value-parser "^3.0.0"
4617
-
4618
- postcss-normalize-repeat-style@^4.0.2:
4619
- version "4.0.2"
4620
- resolved "https://registry.yarnpkg.com/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-4.0.2.tgz#c4ebbc289f3991a028d44751cbdd11918b17910c"
4621
- integrity sha512-qvigdYYMpSuoFs3Is/f5nHdRLJN/ITA7huIoCyqqENJe9PvPmLhNLMu7QTjPdtnVf6OcYYO5SHonx4+fbJE1+Q==
4622
- dependencies:
4623
- cssnano-util-get-arguments "^4.0.0"
4624
- cssnano-util-get-match "^4.0.0"
4625
- postcss "^7.0.0"
4626
- postcss-value-parser "^3.0.0"
4627
-
4628
- postcss-normalize-string@^4.0.2:
4629
- version "4.0.2"
4630
- resolved "https://registry.yarnpkg.com/postcss-normalize-string/-/postcss-normalize-string-4.0.2.tgz#cd44c40ab07a0c7a36dc5e99aace1eca4ec2690c"
4631
- integrity sha512-RrERod97Dnwqq49WNz8qo66ps0swYZDSb6rM57kN2J+aoyEAJfZ6bMx0sx/F9TIEX0xthPGCmeyiam/jXif0eA==
4632
- dependencies:
4633
- has "^1.0.0"
4634
- postcss "^7.0.0"
4635
- postcss-value-parser "^3.0.0"
4636
-
4637
- postcss-normalize-timing-functions@^4.0.2:
4638
- version "4.0.2"
4639
- resolved "https://registry.yarnpkg.com/postcss-normalize-timing-functions/-/postcss-normalize-timing-functions-4.0.2.tgz#8e009ca2a3949cdaf8ad23e6b6ab99cb5e7d28d9"
4640
- integrity sha512-acwJY95edP762e++00Ehq9L4sZCEcOPyaHwoaFOhIwWCDfik6YvqsYNxckee65JHLKzuNSSmAdxwD2Cud1Z54A==
4641
- dependencies:
4642
- cssnano-util-get-match "^4.0.0"
4643
- postcss "^7.0.0"
4644
- postcss-value-parser "^3.0.0"
4645
-
4646
- postcss-normalize-unicode@^4.0.1:
4647
- version "4.0.1"
4648
- resolved "https://registry.yarnpkg.com/postcss-normalize-unicode/-/postcss-normalize-unicode-4.0.1.tgz#841bd48fdcf3019ad4baa7493a3d363b52ae1cfb"
4649
- integrity sha512-od18Uq2wCYn+vZ/qCOeutvHjB5jm57ToxRaMeNuf0nWVHaP9Hua56QyMF6fs/4FSUnVIw0CBPsU0K4LnBPwYwg==
4650
- dependencies:
4651
- browserslist "^4.0.0"
4652
- postcss "^7.0.0"
4653
- postcss-value-parser "^3.0.0"
4654
-
4655
- postcss-normalize-url@^4.0.1:
4656
- version "4.0.1"
4657
- resolved "https://registry.yarnpkg.com/postcss-normalize-url/-/postcss-normalize-url-4.0.1.tgz#10e437f86bc7c7e58f7b9652ed878daaa95faae1"
4658
- integrity sha512-p5oVaF4+IHwu7VpMan/SSpmpYxcJMtkGppYf0VbdH5B6hN8YNmVyJLuY9FmLQTzY3fag5ESUUHDqM+heid0UVA==
4659
- dependencies:
4660
- is-absolute-url "^2.0.0"
4661
- normalize-url "^3.0.0"
4662
- postcss "^7.0.0"
4663
- postcss-value-parser "^3.0.0"
4664
-
4665
- postcss-normalize-whitespace@^4.0.2:
4666
- version "4.0.2"
4667
- resolved "https://registry.yarnpkg.com/postcss-normalize-whitespace/-/postcss-normalize-whitespace-4.0.2.tgz#bf1d4070fe4fcea87d1348e825d8cc0c5faa7d82"
4668
- integrity sha512-tO8QIgrsI3p95r8fyqKV+ufKlSHh9hMJqACqbv2XknufqEDhDvbguXGBBqxw9nsQoXWf0qOqppziKJKHMD4GtA==
4669
- dependencies:
4670
- postcss "^7.0.0"
4671
- postcss-value-parser "^3.0.0"
4672
-
4673
- postcss-ordered-values@^4.1.2:
4674
- version "4.1.2"
4675
- resolved "https://registry.yarnpkg.com/postcss-ordered-values/-/postcss-ordered-values-4.1.2.tgz#0cf75c820ec7d5c4d280189559e0b571ebac0eee"
4676
- integrity sha512-2fCObh5UanxvSxeXrtLtlwVThBvHn6MQcu4ksNT2tsaV2Fg76R2CV98W7wNSlX+5/pFwEyaDwKLLoEV7uRybAw==
4677
- dependencies:
4678
- cssnano-util-get-arguments "^4.0.0"
4679
- postcss "^7.0.0"
4680
- postcss-value-parser "^3.0.0"
4681
-
4682
- postcss-reduce-initial@^4.0.3:
4683
- version "4.0.3"
4684
- resolved "https://registry.yarnpkg.com/postcss-reduce-initial/-/postcss-reduce-initial-4.0.3.tgz#7fd42ebea5e9c814609639e2c2e84ae270ba48df"
4685
- integrity sha512-gKWmR5aUulSjbzOfD9AlJiHCGH6AEVLaM0AV+aSioxUDd16qXP1PCh8d1/BGVvpdWn8k/HiK7n6TjeoXN1F7DA==
4686
- dependencies:
4687
- browserslist "^4.0.0"
4688
- caniuse-api "^3.0.0"
4689
- has "^1.0.0"
4690
- postcss "^7.0.0"
4691
-
4692
- postcss-reduce-transforms@^4.0.2:
4693
- version "4.0.2"
4694
- resolved "https://registry.yarnpkg.com/postcss-reduce-transforms/-/postcss-reduce-transforms-4.0.2.tgz#17efa405eacc6e07be3414a5ca2d1074681d4e29"
4695
- integrity sha512-EEVig1Q2QJ4ELpJXMZR8Vt5DQx8/mo+dGWSR7vWXqcob2gQLyQGsionYcGKATXvQzMPn6DSN1vTN7yFximdIAg==
4696
- dependencies:
4697
- cssnano-util-get-match "^4.0.0"
4698
- has "^1.0.0"
4699
- postcss "^7.0.0"
4700
- postcss-value-parser "^3.0.0"
4701
-
4702
3488
  postcss-scss@2.0.0:
4703
3489
  version "2.0.0"
4704
3490
  resolved "https://registry.yarnpkg.com/postcss-scss/-/postcss-scss-2.0.0.tgz#248b0a28af77ea7b32b1011aba0f738bda27dea1"
@@ -4715,54 +3501,6 @@ postcss-selector-parser@2.2.3:
4715
3501
  indexes-of "^1.0.1"
4716
3502
  uniq "^1.0.1"
4717
3503
 
4718
- postcss-selector-parser@^3.0.0:
4719
- version "3.1.2"
4720
- resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-3.1.2.tgz#b310f5c4c0fdaf76f94902bbaa30db6aa84f5270"
4721
- integrity sha512-h7fJ/5uWuRVyOtkO45pnt1Ih40CEleeyCHzipqAZO2e5H20g25Y48uYnFUiShvY4rZWNJ/Bib/KVPmanaCtOhA==
4722
- dependencies:
4723
- dot-prop "^5.2.0"
4724
- indexes-of "^1.0.1"
4725
- uniq "^1.0.1"
4726
-
4727
- postcss-selector-parser@^6.0.2:
4728
- version "6.0.4"
4729
- resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-6.0.4.tgz#56075a1380a04604c38b063ea7767a129af5c2b3"
4730
- integrity sha512-gjMeXBempyInaBqpp8gODmwZ52WaYsVOsfr4L4lDQ7n3ncD6mEyySiDtgzCT+NYC0mmeOLvtsF8iaEf0YT6dBw==
4731
- dependencies:
4732
- cssesc "^3.0.0"
4733
- indexes-of "^1.0.1"
4734
- uniq "^1.0.1"
4735
- util-deprecate "^1.0.2"
4736
-
4737
- postcss-svgo@^4.0.2:
4738
- version "4.0.2"
4739
- resolved "https://registry.yarnpkg.com/postcss-svgo/-/postcss-svgo-4.0.2.tgz#17b997bc711b333bab143aaed3b8d3d6e3d38258"
4740
- integrity sha512-C6wyjo3VwFm0QgBy+Fu7gCYOkCmgmClghO+pjcxvrcBKtiKt0uCF+hvbMO1fyv5BMImRK90SMb+dwUnfbGd+jw==
4741
- dependencies:
4742
- is-svg "^3.0.0"
4743
- postcss "^7.0.0"
4744
- postcss-value-parser "^3.0.0"
4745
- svgo "^1.0.0"
4746
-
4747
- postcss-unique-selectors@^4.0.1:
4748
- version "4.0.1"
4749
- resolved "https://registry.yarnpkg.com/postcss-unique-selectors/-/postcss-unique-selectors-4.0.1.tgz#9446911f3289bfd64c6d680f073c03b1f9ee4bac"
4750
- integrity sha512-+JanVaryLo9QwZjKrmJgkI4Fn8SBgRO6WXQBJi7KiAVPlmxikB5Jzc4EvXMT2H0/m0RjrVVm9rGNhZddm/8Spg==
4751
- dependencies:
4752
- alphanum-sort "^1.0.0"
4753
- postcss "^7.0.0"
4754
- uniqs "^2.0.0"
4755
-
4756
- postcss-value-parser@^3.0.0:
4757
- version "3.3.1"
4758
- resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz#9ff822547e2893213cf1c30efa51ac5fd1ba8281"
4759
- integrity sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==
4760
-
4761
- postcss-value-parser@^4.0.2, postcss-value-parser@^4.1.0:
4762
- version "4.1.0"
4763
- resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-4.1.0.tgz#443f6a20ced6481a2bda4fa8532a6e55d789a2cb"
4764
- integrity sha512-97DXOFbQJhk71ne5/Mt6cOu6yxsSfM0QGQyl0L25Gca4yGWEGJaig7l7gbCX623VqTBNGLRLaVUCnNkcedlRSQ==
4765
-
4766
3504
  postcss-values-parser@1.5.0:
4767
3505
  version "1.5.0"
4768
3506
  resolved "https://registry.yarnpkg.com/postcss-values-parser/-/postcss-values-parser-1.5.0.tgz#5d9fa63e2bcb0179ce48f3235303765eb89f3047"
@@ -4772,15 +3510,6 @@ postcss-values-parser@1.5.0:
4772
3510
  indexes-of "^1.0.1"
4773
3511
  uniq "^1.0.1"
4774
3512
 
4775
- postcss@6.0.1:
4776
- version "6.0.1"
4777
- resolved "https://registry.yarnpkg.com/postcss/-/postcss-6.0.1.tgz#000dbd1f8eef217aa368b9a212c5fc40b2a8f3f2"
4778
- integrity sha1-AA29H47vIXqjaLmiEsX8QLKo8/I=
4779
- dependencies:
4780
- chalk "^1.1.3"
4781
- source-map "^0.5.6"
4782
- supports-color "^3.2.3"
4783
-
4784
3513
  postcss@^5.2.16:
4785
3514
  version "5.2.18"
4786
3515
  resolved "https://registry.yarnpkg.com/postcss/-/postcss-5.2.18.tgz#badfa1497d46244f6390f58b319830d9107853c5"
@@ -4791,16 +3520,7 @@ postcss@^5.2.16:
4791
3520
  source-map "^0.5.6"
4792
3521
  supports-color "^3.2.3"
4793
3522
 
4794
- postcss@^6.0.1:
4795
- version "6.0.23"
4796
- resolved "https://registry.yarnpkg.com/postcss/-/postcss-6.0.23.tgz#61c82cc328ac60e677645f979054eb98bc0e3324"
4797
- integrity sha512-soOk1h6J3VMTZtVeVpv15/Hpdl2cBLX3CAw4TAbkpTJiNPk9YP/zWcD1ND+xEtvyuuvKzbxliTOIyvkSeSJ6ag==
4798
- dependencies:
4799
- chalk "^2.4.1"
4800
- source-map "^0.6.1"
4801
- supports-color "^5.4.0"
4802
-
4803
- postcss@^7.0.0, postcss@^7.0.1, postcss@^7.0.27, postcss@^7.0.32:
3523
+ postcss@^7.0.0:
4804
3524
  version "7.0.35"
4805
3525
  resolved "https://registry.yarnpkg.com/postcss/-/postcss-7.0.35.tgz#d2be00b998f7f211d8a276974079f2e92b970e24"
4806
3526
  integrity sha512-3QT8bBJeX/S5zKTTjTCIjRF3If4avAT6kqxcASlTWEtAFCb9NH0OUxNDfgZSWdP5fJnBYCMEWkIFfWeugjzYMg==
@@ -4896,28 +3616,11 @@ prettierx@0.11.3:
4896
3616
  yaml "1.8.3"
4897
3617
  yaml-unist-parser "1.1.1"
4898
3618
 
4899
- pretty-bytes@^3.0.0:
4900
- version "3.0.1"
4901
- resolved "https://registry.yarnpkg.com/pretty-bytes/-/pretty-bytes-3.0.1.tgz#27d0008d778063a0b4811bb35c79f1bd5d5fbccf"
4902
- integrity sha1-J9AAjXeAY6C0gRuzXHnxvV1fvM8=
4903
- dependencies:
4904
- number-is-nan "^1.0.0"
4905
-
4906
- pretty-bytes@^5.3.0:
4907
- version "5.4.1"
4908
- resolved "https://registry.yarnpkg.com/pretty-bytes/-/pretty-bytes-5.4.1.tgz#cd89f79bbcef21e3d21eb0da68ffe93f803e884b"
4909
- integrity sha512-s1Iam6Gwz3JI5Hweaz4GoCD1WUNUIyzePFy5+Js2hjwGVt2Z79wNN+ZKOZ2vB6C+Xs6njyB84Z1IthQg8d9LxA==
4910
-
4911
3619
  progress@^2.0.0:
4912
3620
  version "2.0.3"
4913
3621
  resolved "https://registry.yarnpkg.com/progress/-/progress-2.0.3.tgz#7e8cf8d8f5b8f239c1bc68beb4eb78567d572ef8"
4914
3622
  integrity sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==
4915
3623
 
4916
- promise.series@^0.2.0:
4917
- version "0.2.0"
4918
- resolved "https://registry.yarnpkg.com/promise.series/-/promise.series-0.2.0.tgz#2cc7ebe959fc3a6619c04ab4dbdc9e452d864bbd"
4919
- integrity sha1-LMfr6Vn8OmYZwEq029yeRS2GS70=
4920
-
4921
3624
  pseudomap@^1.0.2:
4922
3625
  version "1.0.2"
4923
3626
  resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3"
@@ -4941,11 +3644,6 @@ punycode@^2.1.0, punycode@^2.1.1:
4941
3644
  resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec"
4942
3645
  integrity sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==
4943
3646
 
4944
- q@^1.1.2:
4945
- version "1.5.1"
4946
- resolved "https://registry.yarnpkg.com/q/-/q-1.5.1.tgz#7e32f75b41381291d04611f1bf14109ac00651d7"
4947
- integrity sha1-fjL3W0E4EpHQRhHxvxQQmsAGUdc=
4948
-
4949
3647
  qs@~6.5.2:
4950
3648
  version "6.5.2"
4951
3649
  resolved "https://registry.yarnpkg.com/qs/-/qs-6.5.2.tgz#cb3ae806e8740444584ef154ce8ee98d403f3e36"
@@ -4973,9 +3671,9 @@ regenerate-unicode-properties@^8.2.0:
4973
3671
  regenerate "^1.4.0"
4974
3672
 
4975
3673
  regenerate@^1.4.0:
4976
- version "1.4.1"
4977
- resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.4.1.tgz#cad92ad8e6b591773485fbe05a485caf4f457e6f"
4978
- integrity sha512-j2+C8+NtXQgEKWk49MMP5P/u2GhnahTtVkRIHr5R5lVRlbKvmQ+oS+A5aLKWp2ma5VkT8sh6v+v4hbH0YHR66A==
3674
+ version "1.4.2"
3675
+ resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.4.2.tgz#b9346d8827e8f5a32f7ba29637d398b69014848a"
3676
+ integrity sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==
4979
3677
 
4980
3678
  regenerator-runtime@^0.13.4:
4981
3679
  version "0.13.7"
@@ -5125,18 +3823,6 @@ resolve-from@^4.0.0:
5125
3823
  resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6"
5126
3824
  integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==
5127
3825
 
5128
- resolve-from@^5.0.0:
5129
- version "5.0.0"
5130
- resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-5.0.0.tgz#c35225843df8f776df21c57557bc087e9dfdfc69"
5131
- integrity sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==
5132
-
5133
- resolve@1.12.0:
5134
- version "1.12.0"
5135
- resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.12.0.tgz#3fc644a35c84a48554609ff26ec52b66fa577df6"
5136
- integrity sha512-B/dOmuoAik5bKcD6s6nXDCjzUKnaDvdkRyAk6rsmsKLipWj4797iothd7jmmUhWTfinVMU+wc56rYKsit2Qy4w==
5137
- dependencies:
5138
- path-parse "^1.0.6"
5139
-
5140
3826
  resolve@1.15.1:
5141
3827
  version "1.15.1"
5142
3828
  resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.15.1.tgz#27bdcdeffeaf2d6244b95bb0f9f4b4653451f3e8"
@@ -5144,12 +3830,12 @@ resolve@1.15.1:
5144
3830
  dependencies:
5145
3831
  path-parse "^1.0.6"
5146
3832
 
5147
- resolve@^1.11.0, resolve@^1.11.1, resolve@^1.12.0, resolve@^1.16.0, resolve@^1.3.2:
5148
- version "1.18.1"
5149
- resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.18.1.tgz#018fcb2c5b207d2a6424aee361c5a266da8f4130"
5150
- integrity sha512-lDfCPaMKfOJXjy0dPayzPdF1phampNWr3qFCjAu+rw/qbQmr5jWH5xN2hwh9QKfw9E5v4hwV7A+jrCmL8yjjqA==
3833
+ resolve@^1.3.2:
3834
+ version "1.19.0"
3835
+ resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.19.0.tgz#1af5bf630409734a067cae29318aac7fa29a267c"
3836
+ integrity sha512-rArEXAgsBG4UgRGcynxWIWKFvh/XZCcS8UJdHhwy91zwAvCZIbcs+vAbflgBnNjYMs/i/i+/Ux6IZhML1yPvxg==
5151
3837
  dependencies:
5152
- is-core-module "^2.0.0"
3838
+ is-core-module "^2.1.0"
5153
3839
  path-parse "^1.0.6"
5154
3840
 
5155
3841
  restore-cursor@^2.0.0:
@@ -5173,16 +3859,6 @@ reusify@^1.0.4:
5173
3859
  resolved "https://registry.yarnpkg.com/reusify/-/reusify-1.0.4.tgz#90da382b1e126efc02146e90845a88db12925d76"
5174
3860
  integrity sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==
5175
3861
 
5176
- rgb-regex@^1.0.1:
5177
- version "1.0.1"
5178
- resolved "https://registry.yarnpkg.com/rgb-regex/-/rgb-regex-1.0.1.tgz#c0e0d6882df0e23be254a475e8edd41915feaeb1"
5179
- integrity sha1-wODWiC3w4jviVKR16O3UGRX+rrE=
5180
-
5181
- rgba-regex@^1.0.0:
5182
- version "1.0.0"
5183
- resolved "https://registry.yarnpkg.com/rgba-regex/-/rgba-regex-1.0.0.tgz#43374e2e2ca0968b0ef1523460b7d730ff22eeb3"
5184
- integrity sha1-QzdOLiyglosO8VI0YLfXMP8i7rM=
5185
-
5186
3862
  rimraf@2.6.3:
5187
3863
  version "2.6.3"
5188
3864
  resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.3.tgz#b2d104fe0d8fb27cf9e0a1cda8262dd3833c6cab"
@@ -5197,86 +3873,6 @@ rimraf@^3.0.0:
5197
3873
  dependencies:
5198
3874
  glob "^7.1.3"
5199
3875
 
5200
- rollup-plugin-bundle-size@^1.0.1:
5201
- version "1.0.3"
5202
- resolved "https://registry.yarnpkg.com/rollup-plugin-bundle-size/-/rollup-plugin-bundle-size-1.0.3.tgz#d245cd988486b4040279f9fd33f357f61673e90f"
5203
- integrity sha512-aWj0Pvzq90fqbI5vN1IvUrlf4utOqy+AERYxwWjegH1G8PzheMnrRIgQ5tkwKVtQMDP0bHZEACW/zLDF+XgfXQ==
5204
- dependencies:
5205
- chalk "^1.1.3"
5206
- maxmin "^2.1.0"
5207
-
5208
- rollup-plugin-es3@^1.1.0:
5209
- version "1.1.0"
5210
- resolved "https://registry.yarnpkg.com/rollup-plugin-es3/-/rollup-plugin-es3-1.1.0.tgz#f866f91b4db839e5b475d8e4a7b9d4c77ecade14"
5211
- integrity sha512-jTMqQgMZ/tkjRW4scf4ln5c0OiTSi+Lx/IEyFd41ldgGoLvvg9AQxmVOl93+KaoyB7XRYToYjiHDvO40NPF/fA==
5212
- dependencies:
5213
- magic-string "^0.22.4"
5214
-
5215
- rollup-plugin-postcss@^2.9.0:
5216
- version "2.9.0"
5217
- resolved "https://registry.yarnpkg.com/rollup-plugin-postcss/-/rollup-plugin-postcss-2.9.0.tgz#e6ea0a1b8fdc4a49fc0385da58804e332750c282"
5218
- integrity sha512-Y7qDwlqjZMBexbB1kRJf+jKIQL8HR6C+ay53YzN+nNJ64hn1PNZfBE3c61hFUhD//zrMwmm7uBW30RuTi+CD0w==
5219
- dependencies:
5220
- chalk "^4.0.0"
5221
- concat-with-sourcemaps "^1.1.0"
5222
- cssnano "^4.1.10"
5223
- import-cwd "^3.0.0"
5224
- p-queue "^6.3.0"
5225
- pify "^5.0.0"
5226
- postcss "^7.0.27"
5227
- postcss-load-config "^2.1.0"
5228
- postcss-modules "^2.0.0"
5229
- promise.series "^0.2.0"
5230
- resolve "^1.16.0"
5231
- rollup-pluginutils "^2.8.2"
5232
- safe-identifier "^0.4.1"
5233
- style-inject "^0.3.0"
5234
-
5235
- rollup-plugin-terser@^5.3.0:
5236
- version "5.3.1"
5237
- resolved "https://registry.yarnpkg.com/rollup-plugin-terser/-/rollup-plugin-terser-5.3.1.tgz#8c650062c22a8426c64268548957463bf981b413"
5238
- integrity sha512-1pkwkervMJQGFYvM9nscrUoncPwiKR/K+bHdjv6PFgRo3cgPHoRT83y2Aa3GvINj4539S15t/tpFPb775TDs6w==
5239
- dependencies:
5240
- "@babel/code-frame" "^7.5.5"
5241
- jest-worker "^24.9.0"
5242
- rollup-pluginutils "^2.8.2"
5243
- serialize-javascript "^4.0.0"
5244
- terser "^4.6.2"
5245
-
5246
- rollup-plugin-typescript2@^0.25.3:
5247
- version "0.25.3"
5248
- resolved "https://registry.yarnpkg.com/rollup-plugin-typescript2/-/rollup-plugin-typescript2-0.25.3.tgz#a5fb2f0f85488789334ce540abe6c7011cbdf40f"
5249
- integrity sha512-ADkSaidKBovJmf5VBnZBZe+WzaZwofuvYdzGAKTN/J4hN7QJCFYAq7IrH9caxlru6T5qhX41PNFS1S4HqhsGQg==
5250
- dependencies:
5251
- find-cache-dir "^3.0.0"
5252
- fs-extra "8.1.0"
5253
- resolve "1.12.0"
5254
- rollup-pluginutils "2.8.1"
5255
- tslib "1.10.0"
5256
-
5257
- rollup-pluginutils@2.8.1:
5258
- version "2.8.1"
5259
- resolved "https://registry.yarnpkg.com/rollup-pluginutils/-/rollup-pluginutils-2.8.1.tgz#8fa6dd0697344938ef26c2c09d2488ce9e33ce97"
5260
- integrity sha512-J5oAoysWar6GuZo0s+3bZ6sVZAC0pfqKz68De7ZgDi5z63jOVZn1uJL/+z1jeKHNbGII8kAyHF5q8LnxSX5lQg==
5261
- dependencies:
5262
- estree-walker "^0.6.1"
5263
-
5264
- rollup-pluginutils@^2.8.2:
5265
- version "2.8.2"
5266
- resolved "https://registry.yarnpkg.com/rollup-pluginutils/-/rollup-pluginutils-2.8.2.tgz#72f2af0748b592364dbd3389e600e5a9444a351e"
5267
- integrity sha512-EEp9NhnUkwY8aif6bxgovPHMoMoNr2FulJziTndpt5H9RdwC47GSGuII9XxpSdzVGM0GWrNPHV6ie1LTNJPaLQ==
5268
- dependencies:
5269
- estree-walker "^0.6.1"
5270
-
5271
- rollup@^1.32.1:
5272
- version "1.32.1"
5273
- resolved "https://registry.yarnpkg.com/rollup/-/rollup-1.32.1.tgz#4480e52d9d9e2ae4b46ba0d9ddeaf3163940f9c4"
5274
- integrity sha512-/2HA0Ec70TvQnXdzynFffkjA6XN+1e2pEv/uKS5Ulca40g2L7KuOE3riasHoNVHOsFD5KKZgDsMk1CP3Tw9s+A==
5275
- dependencies:
5276
- "@types/estree" "*"
5277
- "@types/node" "*"
5278
- acorn "^7.1.0"
5279
-
5280
3876
  run-async@^2.4.0:
5281
3877
  version "2.4.1"
5282
3878
  resolved "https://registry.yarnpkg.com/run-async/-/run-async-2.4.1.tgz#8440eccf99ea3e70bd409d49aab88e10c189a455"
@@ -5294,13 +3890,6 @@ rxjs@^6.3.3, rxjs@^6.6.0:
5294
3890
  dependencies:
5295
3891
  tslib "^1.9.0"
5296
3892
 
5297
- sade@^1.7.3:
5298
- version "1.7.4"
5299
- resolved "https://registry.yarnpkg.com/sade/-/sade-1.7.4.tgz#ea681e0c65d248d2095c90578c03ca0bb1b54691"
5300
- integrity sha512-y5yauMD93rX840MwUJr7C1ysLFBgMspsdTo4UVrDg3fXDvtwOyIqykhVAAm6fk/3au77773itJStObgK+LKaiA==
5301
- dependencies:
5302
- mri "^1.1.0"
5303
-
5304
3893
  safe-buffer@^5.0.1, safe-buffer@^5.1.0, safe-buffer@^5.1.2:
5305
3894
  version "5.2.1"
5306
3895
  resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6"
@@ -5311,21 +3900,11 @@ safe-buffer@~5.1.1:
5311
3900
  resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d"
5312
3901
  integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==
5313
3902
 
5314
- safe-identifier@^0.4.1:
5315
- version "0.4.2"
5316
- resolved "https://registry.yarnpkg.com/safe-identifier/-/safe-identifier-0.4.2.tgz#cf6bfca31c2897c588092d1750d30ef501d59fcb"
5317
- integrity sha512-6pNbSMW6OhAi9j+N8V+U715yBQsaWJ7eyEUaOrawX+isg5ZxhUlV1NipNtgaKHmFGiABwt+ZF04Ii+3Xjkg+8w==
5318
-
5319
3903
  "safer-buffer@>= 2.1.2 < 3", safer-buffer@^2.0.2, safer-buffer@^2.1.0, safer-buffer@~2.1.0:
5320
3904
  version "2.1.2"
5321
3905
  resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a"
5322
3906
  integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==
5323
3907
 
5324
- sax@~1.2.4:
5325
- version "1.2.4"
5326
- resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9"
5327
- integrity sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==
5328
-
5329
3908
  saxes@^5.0.0:
5330
3909
  version "5.0.1"
5331
3910
  resolved "https://registry.yarnpkg.com/saxes/-/saxes-5.0.1.tgz#eebab953fa3b7608dbe94e5dadb15c888fa6696d"
@@ -5338,7 +3917,7 @@ semver-compare@^1.0.0:
5338
3917
  resolved "https://registry.yarnpkg.com/semver-compare/-/semver-compare-1.0.0.tgz#0dee216a1c941ab37e9efb1788f6afc5ff5537fc"
5339
3918
  integrity sha1-De4hahyUGrN+nvsXiPavxf9VN/w=
5340
3919
 
5341
- semver@6.3.0, semver@^6.0.0, semver@^6.1.2, semver@^6.3.0:
3920
+ semver@6.3.0, semver@^6.1.2, semver@^6.3.0:
5342
3921
  version "6.3.0"
5343
3922
  resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d"
5344
3923
  integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==
@@ -5360,13 +3939,6 @@ serialize-javascript@5.0.1:
5360
3939
  dependencies:
5361
3940
  randombytes "^2.1.0"
5362
3941
 
5363
- serialize-javascript@^4.0.0:
5364
- version "4.0.0"
5365
- resolved "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-4.0.0.tgz#b525e1238489a5ecfc42afacc3fe99e666f4b1aa"
5366
- integrity sha512-GaNA54380uFefWghODBWEGisLZFj00nS5ACs6yHa9nLqlLpVLO8ChDGeKRjZnV4Nh4n0Qi7nhYZD/9fCPzEqkw==
5367
- dependencies:
5368
- randombytes "^2.1.0"
5369
-
5370
3942
  set-blocking@^2.0.0:
5371
3943
  version "2.0.0"
5372
3944
  resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7"
@@ -5411,13 +3983,6 @@ simple-html-tokenizer@^0.5.7:
5411
3983
  resolved "https://registry.yarnpkg.com/simple-html-tokenizer/-/simple-html-tokenizer-0.5.10.tgz#0843e4f00c9677f1c81e3dfeefcee0a4aca8e5d0"
5412
3984
  integrity sha512-1DHMUmvUOGuUZ9/+cX/+hOhWhRD5dEw6lodn8WuV+T+cQ31hhBcCu1dcDsNotowi4mMaNhrLyKoS+DtB81HdDA==
5413
3985
 
5414
- simple-swizzle@^0.2.2:
5415
- version "0.2.2"
5416
- resolved "https://registry.yarnpkg.com/simple-swizzle/-/simple-swizzle-0.2.2.tgz#a4da6b635ffcccca33f70d17cb92592de95e557a"
5417
- integrity sha1-pNprY1/8zMoz9w0Xy5JZLeleVXo=
5418
- dependencies:
5419
- is-arrayish "^0.3.1"
5420
-
5421
3986
  slash@^3.0.0:
5422
3987
  version "3.0.0"
5423
3988
  resolved "https://registry.yarnpkg.com/slash/-/slash-3.0.0.tgz#6539be870c165adbd5240220dbe361f1bc4d4634"
@@ -5437,7 +4002,7 @@ slice-ansi@^2.1.0:
5437
4002
  astral-regex "^1.0.0"
5438
4003
  is-fullwidth-code-point "^2.0.0"
5439
4004
 
5440
- source-map-support@^0.5.16, source-map-support@~0.5.12:
4005
+ source-map-support@^0.5.16:
5441
4006
  version "0.5.19"
5442
4007
  resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.19.tgz#a98b62f86dcaf4f67399648c085291ab9e8fed61"
5443
4008
  integrity sha512-Wonm7zOCIJzBGQdB+thsPar0kYuCIzYvxZwlBa87yi/Mdjv7Tip2cyVbLj5o0cFPN4EVkuTwb3GDDyUx2DGnGw==
@@ -5455,11 +4020,6 @@ source-map@^0.6.0, source-map@^0.6.1, source-map@~0.6.1:
5455
4020
  resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263"
5456
4021
  integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==
5457
4022
 
5458
- sourcemap-codec@^1.4.4:
5459
- version "1.4.8"
5460
- resolved "https://registry.yarnpkg.com/sourcemap-codec/-/sourcemap-codec-1.4.8.tgz#ea804bd94857402e6992d05a38ef1ae35a9ab4c4"
5461
- integrity sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==
5462
-
5463
4023
  sprintf-js@~1.0.2:
5464
4024
  version "1.0.3"
5465
4025
  resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c"
@@ -5480,11 +4040,6 @@ sshpk@^1.7.0:
5480
4040
  safer-buffer "^2.0.2"
5481
4041
  tweetnacl "~0.14.0"
5482
4042
 
5483
- stable@^0.1.8:
5484
- version "0.1.8"
5485
- resolved "https://registry.yarnpkg.com/stable/-/stable-0.1.8.tgz#836eb3c8382fe2936feaf544631017ce7d47a3cf"
5486
- integrity sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==
5487
-
5488
4043
  state-toggle@^1.0.0:
5489
4044
  version "1.0.3"
5490
4045
  resolved "https://registry.yarnpkg.com/state-toggle/-/state-toggle-1.0.3.tgz#e123b16a88e143139b09c6852221bc9815917dfe"
@@ -5508,11 +4063,6 @@ string-argv@^0.3.0:
5508
4063
  resolved "https://registry.yarnpkg.com/string-argv/-/string-argv-0.3.1.tgz#95e2fbec0427ae19184935f816d74aaa4c5c19da"
5509
4064
  integrity sha512-a1uQGz7IyVy9YwhqjZIZu1c8JO8dNIe20xBmSS6qu9kv++k3JGzCVmprbNN5Kn+BgzD5E7YYwg1CcjuJMRNsvg==
5510
4065
 
5511
- string-hash@^1.1.1:
5512
- version "1.1.3"
5513
- resolved "https://registry.yarnpkg.com/string-hash/-/string-hash-1.1.3.tgz#e8aafc0ac1855b4666929ed7dd1275df5d6c811b"
5514
- integrity sha1-6Kr8CsGFW0Zmkp7X3RJ1311sgRs=
5515
-
5516
4066
  string-width@4.2.0, string-width@^4.1.0:
5517
4067
  version "4.2.0"
5518
4068
  resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.0.tgz#952182c46cc7b2c313d1596e623992bd163b72b5"
@@ -5549,20 +4099,20 @@ string-width@^3.0.0, string-width@^3.1.0:
5549
4099
  strip-ansi "^5.1.0"
5550
4100
 
5551
4101
  string.prototype.trimend@^1.0.1:
5552
- version "1.0.2"
5553
- resolved "https://registry.yarnpkg.com/string.prototype.trimend/-/string.prototype.trimend-1.0.2.tgz#6ddd9a8796bc714b489a3ae22246a208f37bfa46"
5554
- integrity sha512-8oAG/hi14Z4nOVP0z6mdiVZ/wqjDtWSLygMigTzAb+7aPEDTleeFf+WrF+alzecxIRkckkJVn+dTlwzJXORATw==
4102
+ version "1.0.3"
4103
+ resolved "https://registry.yarnpkg.com/string.prototype.trimend/-/string.prototype.trimend-1.0.3.tgz#a22bd53cca5c7cf44d7c9d5c732118873d6cd18b"
4104
+ integrity sha512-ayH0pB+uf0U28CtjlLvL7NaohvR1amUvVZk+y3DYb0Ey2PUV5zPkkKy9+U1ndVEIXO8hNg18eIv9Jntbii+dKw==
5555
4105
  dependencies:
4106
+ call-bind "^1.0.0"
5556
4107
  define-properties "^1.1.3"
5557
- es-abstract "^1.18.0-next.1"
5558
4108
 
5559
4109
  string.prototype.trimstart@^1.0.1:
5560
- version "1.0.2"
5561
- resolved "https://registry.yarnpkg.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.2.tgz#22d45da81015309cd0cdd79787e8919fc5c613e7"
5562
- integrity sha512-7F6CdBTl5zyu30BJFdzSTlSlLPwODC23Od+iLoVH8X6+3fvDPPuBVVj9iaB1GOsSTSIgVfsfm27R2FGrAPznWg==
4110
+ version "1.0.3"
4111
+ resolved "https://registry.yarnpkg.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.3.tgz#9b4cb590e123bb36564401d59824298de50fd5aa"
4112
+ integrity sha512-oBIBUy5lea5tt0ovtOFiEQaBkoBBkyJhZXzJYrSmDo5IUUqbOPvVezuRs/agBIdZ2p2Eo1FD6bD9USyBLfl3xg==
5563
4113
  dependencies:
4114
+ call-bind "^1.0.0"
5564
4115
  define-properties "^1.1.3"
5565
- es-abstract "^1.18.0-next.1"
5566
4116
 
5567
4117
  stringify-object@^3.3.0:
5568
4118
  version "3.3.0"
@@ -5611,20 +4161,6 @@ strip-json-comments@3.1.1, strip-json-comments@^3.0.1:
5611
4161
  resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz#31f1281b3832630434831c310c01cccda8cbe006"
5612
4162
  integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==
5613
4163
 
5614
- style-inject@^0.3.0:
5615
- version "0.3.0"
5616
- resolved "https://registry.yarnpkg.com/style-inject/-/style-inject-0.3.0.tgz#d21c477affec91811cc82355832a700d22bf8dd3"
5617
- integrity sha512-IezA2qp+vcdlhJaVm5SOdPPTUu0FCEqfNSli2vRuSIBbu5Nq5UvygTk/VzeCqfLz2Atj3dVII5QBKGZRZ0edzw==
5618
-
5619
- stylehacks@^4.0.0:
5620
- version "4.0.3"
5621
- resolved "https://registry.yarnpkg.com/stylehacks/-/stylehacks-4.0.3.tgz#6718fcaf4d1e07d8a1318690881e8d96726a71d5"
5622
- integrity sha512-7GlLk9JwlElY4Y6a/rmbH2MhVlTyVmiJd1PfTCqFaIBEGMYNsrO/v3SeGTdhBThLg4Z+NbOk/qFMwCa+J+3p/g==
5623
- dependencies:
5624
- browserslist "^4.0.0"
5625
- postcss "^7.0.0"
5626
- postcss-selector-parser "^3.0.0"
5627
-
5628
4164
  supports-color@7.2.0, supports-color@^7.1.0:
5629
4165
  version "7.2.0"
5630
4166
  resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da"
@@ -5644,7 +4180,7 @@ supports-color@^3.2.3:
5644
4180
  dependencies:
5645
4181
  has-flag "^1.0.0"
5646
4182
 
5647
- supports-color@^5.3.0, supports-color@^5.4.0:
4183
+ supports-color@^5.3.0:
5648
4184
  version "5.5.0"
5649
4185
  resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f"
5650
4186
  integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==
@@ -5658,25 +4194,6 @@ supports-color@^6.1.0:
5658
4194
  dependencies:
5659
4195
  has-flag "^3.0.0"
5660
4196
 
5661
- svgo@^1.0.0:
5662
- version "1.3.2"
5663
- resolved "https://registry.yarnpkg.com/svgo/-/svgo-1.3.2.tgz#b6dc511c063346c9e415b81e43401145b96d4167"
5664
- integrity sha512-yhy/sQYxR5BkC98CY7o31VGsg014AKLEPxdfhora76l36hD9Rdy5NZA/Ocn6yayNPgSamYdtX2rFJdcv07AYVw==
5665
- dependencies:
5666
- chalk "^2.4.1"
5667
- coa "^2.0.2"
5668
- css-select "^2.0.0"
5669
- css-select-base-adapter "^0.1.1"
5670
- css-tree "1.0.0-alpha.37"
5671
- csso "^4.0.2"
5672
- js-yaml "^3.13.1"
5673
- mkdirp "~0.5.1"
5674
- object.values "^1.1.0"
5675
- sax "~1.2.4"
5676
- stable "^0.1.8"
5677
- unquote "~1.1.1"
5678
- util.promisify "~1.0.0"
5679
-
5680
4197
  symbol-observable@^1.1.0:
5681
4198
  version "1.2.0"
5682
4199
  resolved "https://registry.yarnpkg.com/symbol-observable/-/symbol-observable-1.2.0.tgz#c22688aed4eab3cdc2dfeacbb561660560a00804"
@@ -5697,15 +4214,6 @@ table@^5.2.3:
5697
4214
  slice-ansi "^2.1.0"
5698
4215
  string-width "^3.0.0"
5699
4216
 
5700
- terser@^4.6.2:
5701
- version "4.8.0"
5702
- resolved "https://registry.yarnpkg.com/terser/-/terser-4.8.0.tgz#63056343d7c70bb29f3af665865a46fe03a0df17"
5703
- integrity sha512-EAPipTNeWsb/3wLPeup1tVPaXfIaU68xMnVdPafIL1TV05OhASArYyIfFvnvJCNrR2NIOvDVNNTFRa+Re2MWyw==
5704
- dependencies:
5705
- commander "^2.20.0"
5706
- source-map "~0.6.1"
5707
- source-map-support "~0.5.12"
5708
-
5709
4217
  text-table@^0.2.0:
5710
4218
  version "0.2.0"
5711
4219
  resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4"
@@ -5716,19 +4224,6 @@ through@^2.3.6:
5716
4224
  resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5"
5717
4225
  integrity sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU=
5718
4226
 
5719
- timsort@^0.3.0:
5720
- version "0.3.0"
5721
- resolved "https://registry.yarnpkg.com/timsort/-/timsort-0.3.0.tgz#405411a8e7e6339fe64db9a234de11dc31e02bd4"
5722
- integrity sha1-QFQRqOfmM5/mTbmiNN4R3DHgK9Q=
5723
-
5724
- tiny-glob@^0.2.6:
5725
- version "0.2.6"
5726
- resolved "https://registry.yarnpkg.com/tiny-glob/-/tiny-glob-0.2.6.tgz#9e056e169d9788fe8a734dfa1ff02e9b92ed7eda"
5727
- integrity sha512-A7ewMqPu1B5PWwC3m7KVgAu96Ch5LA0w4SnEN/LbDREj/gAD0nPWboRbn8YoP9ISZXqeNAlMvKSKoEuhcfK3Pw==
5728
- dependencies:
5729
- globalyzer "^0.1.0"
5730
- globrex "^0.1.1"
5731
-
5732
4227
  tmp@^0.0.33:
5733
4228
  version "0.0.33"
5734
4229
  resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.0.33.tgz#6d34335889768d21b2bcda0aa277ced3b1bfadf9"
@@ -5787,12 +4282,7 @@ trough@^1.0.0:
5787
4282
  resolved "https://registry.yarnpkg.com/trough/-/trough-1.0.5.tgz#b8b639cefad7d0bb2abd37d433ff8293efa5f406"
5788
4283
  integrity sha512-rvuRbTarPXmMb79SmzEp8aqXNKcK+y0XaB298IXueQ8I2PsrATcPBCSPyK/dDNa2iWOhKlfNnOjdAOTBU/nkFA==
5789
4284
 
5790
- tslib@1.10.0:
5791
- version "1.10.0"
5792
- resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.10.0.tgz#c3c19f95973fb0a62973fb09d90d961ee43e5c8a"
5793
- integrity sha512-qOebF53frne81cf0S9B41ByenJ3/IuH8yJKngAX35CmiZySA0khhkovshKK+jGCaMnVomla7gVlIcc3EvKPbTQ==
5794
-
5795
- tslib@^1.10.0, tslib@^1.13.0, tslib@^1.8.1, tslib@^1.9.0, tslib@^1.9.3:
4285
+ tslib@^1.10.0, tslib@^1.8.1, tslib@^1.9.0, tslib@^1.9.3:
5796
4286
  version "1.14.1"
5797
4287
  resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.14.1.tgz#cf2d38bdc34a134bcaf1091c41f6619e2f672d00"
5798
4288
  integrity sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==
@@ -5833,15 +4323,10 @@ type-fest@^0.8.1:
5833
4323
  resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.8.1.tgz#09e249ebde851d3b1e48d27c105444667f17b83d"
5834
4324
  integrity sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==
5835
4325
 
5836
- typescript@^3.9.5:
5837
- version "3.9.7"
5838
- resolved "https://registry.yarnpkg.com/typescript/-/typescript-3.9.7.tgz#98d600a5ebdc38f40cb277522f12dc800e9e25fa"
5839
- integrity sha512-BLbiRkiBzAwsjut4x/dsibSTB6yWpwT5qWmC2OfuCg3GgVQCSgMs4vEctYPhsaGtd0AeuuHMkjZ2h2WG8MSzRw==
5840
-
5841
4326
  uglify-js@^3.1.4:
5842
- version "3.11.4"
5843
- resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.11.4.tgz#b47b7ae99d4bd1dca65b53aaa69caa0909e6fadf"
5844
- integrity sha512-FyYnoxVL1D6+jDGQpbK5jW6y/2JlVfRfEeQ67BPCUg5wfCjaKOpr2XeceE4QL+MkhxliLtf5EbrMDZgzpt2CNw==
4327
+ version "3.12.0"
4328
+ resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.12.0.tgz#b943f129275c41d435eb54b643bbffee71dccf57"
4329
+ integrity sha512-8lBMSkFZuAK7gGF8LswsXmir8eX8d2AAMOnxSDWjKBx/fBR6MypQjs78m6ML9zQVp1/hD4TBdfeMZMC7nW1TAA==
5845
4330
 
5846
4331
  unherit@^1.0.4:
5847
4332
  version "1.1.3"
@@ -5904,11 +4389,6 @@ uniq@^1.0.1:
5904
4389
  resolved "https://registry.yarnpkg.com/uniq/-/uniq-1.0.1.tgz#b31c5ae8254844a3a8281541ce2b04b865a734ff"
5905
4390
  integrity sha1-sxxa6CVIRKOoKBVBzisEuGWnNP8=
5906
4391
 
5907
- uniqs@^2.0.0:
5908
- version "2.0.0"
5909
- resolved "https://registry.yarnpkg.com/uniqs/-/uniqs-2.0.0.tgz#ffede4b36b25290696e6e165d4a59edb998e6b02"
5910
- integrity sha1-/+3ks2slKQaW5uFl1KWe25mOawI=
5911
-
5912
4392
  unist-util-is@^3.0.0:
5913
4393
  version "3.0.0"
5914
4394
  resolved "https://registry.yarnpkg.com/unist-util-is/-/unist-util-is-3.0.0.tgz#d9e84381c2468e82629e4a5be9d7d05a2dd324cd"
@@ -5942,16 +4422,6 @@ unist-util-visit@^1.1.0:
5942
4422
  dependencies:
5943
4423
  unist-util-visit-parents "^2.0.0"
5944
4424
 
5945
- universalify@^0.1.0:
5946
- version "0.1.2"
5947
- resolved "https://registry.yarnpkg.com/universalify/-/universalify-0.1.2.tgz#b646f69be3942dabcecc9d6639c80dc105efaa66"
5948
- integrity sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==
5949
-
5950
- unquote@~1.1.1:
5951
- version "1.1.1"
5952
- resolved "https://registry.yarnpkg.com/unquote/-/unquote-1.1.1.tgz#8fded7324ec6e88a0ff8b905e7c098cdc086d544"
5953
- integrity sha1-j97XMk7G6IoP+LkF58CYzcCG1UQ=
5954
-
5955
4425
  uri-js@^4.2.2:
5956
4426
  version "4.4.0"
5957
4427
  resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.4.0.tgz#aa714261de793e8a82347a7bcc9ce74e86f28602"
@@ -5959,21 +4429,6 @@ uri-js@^4.2.2:
5959
4429
  dependencies:
5960
4430
  punycode "^2.1.0"
5961
4431
 
5962
- util-deprecate@^1.0.2:
5963
- version "1.0.2"
5964
- resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf"
5965
- integrity sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=
5966
-
5967
- util.promisify@~1.0.0:
5968
- version "1.0.1"
5969
- resolved "https://registry.yarnpkg.com/util.promisify/-/util.promisify-1.0.1.tgz#6baf7774b80eeb0f7520d8b81d07982a59abbaee"
5970
- integrity sha512-g9JpC/3He3bm38zsLupWryXHoEcS22YHthuPQSJdMy6KNrzIRzWqcsHzD/WUnqe45whVou4VIsPew37DoXWNrA==
5971
- dependencies:
5972
- define-properties "^1.1.3"
5973
- es-abstract "^1.17.2"
5974
- has-symbols "^1.0.1"
5975
- object.getownpropertydescriptors "^2.1.0"
5976
-
5977
4432
  util@^0.12.0:
5978
4433
  version "0.12.3"
5979
4434
  resolved "https://registry.yarnpkg.com/util/-/util-0.12.3.tgz#971bb0292d2cc0c892dab7c6a5d37c2bec707888"
@@ -5992,14 +4447,9 @@ uuid@^3.3.2:
5992
4447
  integrity sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==
5993
4448
 
5994
4449
  v8-compile-cache@^2.0.3:
5995
- version "2.1.1"
5996
- resolved "https://registry.yarnpkg.com/v8-compile-cache/-/v8-compile-cache-2.1.1.tgz#54bc3cdd43317bca91e35dcaf305b1a7237de745"
5997
- integrity sha512-8OQ9CL+VWyt3JStj7HX7/ciTL2V3Rl1Wf5OL+SNTm0yK1KvtReVulksyeRnCANHHuUxHlQig+JJDlUhBt1NQDQ==
5998
-
5999
- vendors@^1.0.0:
6000
- version "1.0.4"
6001
- resolved "https://registry.yarnpkg.com/vendors/-/vendors-1.0.4.tgz#e2b800a53e7a29b93506c3cf41100d16c4c4ad8e"
6002
- integrity sha512-/juG65kTL4Cy2su4P8HjtkTxk6VmJDiOPBufWniqQ6wknac6jNiXS9vU+hO3wgusiyqWlzTbVHi0dyJqRONg3w==
4450
+ version "2.2.0"
4451
+ resolved "https://registry.yarnpkg.com/v8-compile-cache/-/v8-compile-cache-2.2.0.tgz#9471efa3ef9128d2f7c6a7ca39c4dd6b5055b132"
4452
+ integrity sha512-gTpR5XQNKFwOd4clxfnhaqvfqMpqEwr4tOtCyz4MtYZX2JYhfr1JvBFKdS+7K/9rfpZR3VLX+YWBbKoxCgS43Q==
6003
4453
 
6004
4454
  verror@1.10.0:
6005
4455
  version "1.10.0"
@@ -6034,11 +4484,6 @@ vfile@^4.0.0:
6034
4484
  unist-util-stringify-position "^2.0.0"
6035
4485
  vfile-message "^2.0.0"
6036
4486
 
6037
- vlq@^0.2.2:
6038
- version "0.2.3"
6039
- resolved "https://registry.yarnpkg.com/vlq/-/vlq-0.2.3.tgz#8f3e4328cf63b1540c0d67e1b2778386f8975b26"
6040
- integrity sha512-DRibZL6DsNhIgYQ+wNdWDL2SL3bKPlVrRiBqV5yuMm++op8W4kGFtaQfCs4KEJn0wBZcHVHJ3eoywX8983k1ow==
6041
-
6042
4487
  vnopts@1.0.2:
6043
4488
  version "1.0.2"
6044
4489
  resolved "https://registry.yarnpkg.com/vnopts/-/vnopts-1.0.2.tgz#f6a331473de0179d1679112cc090572b695202f7"
@@ -6176,9 +4621,9 @@ write@1.0.3:
6176
4621
  mkdirp "^0.5.1"
6177
4622
 
6178
4623
  ws@^7.2.3:
6179
- version "7.3.1"
6180
- resolved "https://registry.yarnpkg.com/ws/-/ws-7.3.1.tgz#d0547bf67f7ce4f12a72dfe31262c68d7dc551c8"
6181
- integrity sha512-D3RuNkynyHmEJIpD2qrgVkc9DQ23OrN/moAwZX4L8DfvszsJxpjQuUq3LMx6HoYji9fbIOBY18XWBsAux1ZZUA==
4624
+ version "7.4.0"
4625
+ resolved "https://registry.yarnpkg.com/ws/-/ws-7.4.0.tgz#a5dd76a24197940d4a8bb9e0e152bb4503764da7"
4626
+ integrity sha512-kyFwXuV/5ymf+IXhS6f0+eAFvydbaBW3zjpT6hUdAh/hbVjTIB5EHBGi0bPoCLSK2wcuz3BrEkB9LrYv1Nm4NQ==
6182
4627
 
6183
4628
  xml-name-validator@^3.0.0:
6184
4629
  version "3.0.0"
@@ -6221,7 +4666,7 @@ yaml@1.8.3:
6221
4666
  dependencies:
6222
4667
  "@babel/runtime" "^7.8.7"
6223
4668
 
6224
- yaml@^1.7.1, yaml@^1.7.2:
4669
+ yaml@^1.7.1:
6225
4670
  version "1.10.0"
6226
4671
  resolved "https://registry.yarnpkg.com/yaml/-/yaml-1.10.0.tgz#3b593add944876077d4d683fee01081bd9fff31e"
6227
4672
  integrity sha512-yr2icI4glYaNG+KWONODapy2/jDdMSDnrONSjblABjD9B4Z5LgiircSt8m8sRZFNi08kG9Sm0uSHtEmP3zaEGg==
@@ -6259,3 +4704,8 @@ yargs@13.3.2:
6259
4704
  which-module "^2.0.0"
6260
4705
  y18n "^4.0.0"
6261
4706
  yargs-parser "^13.1.2"
4707
+
4708
+ yocto-queue@^0.1.0:
4709
+ version "0.1.0"
4710
+ resolved "https://registry.yarnpkg.com/yocto-queue/-/yocto-queue-0.1.0.tgz#0294eb3dee05028d31ee1a5fa2c556a6aaf10a1b"
4711
+ integrity sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==