stimulus_reflex 3.4.1 → 3.5.0.pre0

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


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

Files changed (45) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +587 -495
  3. data/Gemfile.lock +82 -86
  4. data/LATEST +1 -0
  5. data/README.md +10 -10
  6. data/app/channels/stimulus_reflex/channel.rb +40 -67
  7. data/lib/generators/USAGE +1 -1
  8. data/lib/generators/stimulus_reflex/{config_generator.rb → initializer_generator.rb} +3 -3
  9. data/lib/generators/stimulus_reflex/templates/app/reflexes/%file_name%_reflex.rb.tt +3 -2
  10. data/lib/generators/stimulus_reflex/templates/app/reflexes/application_reflex.rb.tt +1 -1
  11. data/lib/generators/stimulus_reflex/templates/config/initializers/stimulus_reflex.rb +6 -1
  12. data/lib/stimulus_reflex.rb +9 -2
  13. data/lib/stimulus_reflex/broadcasters/broadcaster.rb +7 -4
  14. data/lib/stimulus_reflex/broadcasters/page_broadcaster.rb +2 -2
  15. data/lib/stimulus_reflex/broadcasters/selector_broadcaster.rb +12 -5
  16. data/lib/stimulus_reflex/cable_ready_channels.rb +6 -2
  17. data/lib/stimulus_reflex/callbacks.rb +55 -5
  18. data/lib/stimulus_reflex/concern_enhancer.rb +37 -0
  19. data/lib/stimulus_reflex/configuration.rb +2 -1
  20. data/lib/stimulus_reflex/element.rb +31 -7
  21. data/lib/stimulus_reflex/policies/reflex_invocation_policy.rb +28 -0
  22. data/lib/stimulus_reflex/reflex.rb +35 -20
  23. data/lib/stimulus_reflex/reflex_data.rb +79 -0
  24. data/lib/stimulus_reflex/reflex_factory.rb +31 -0
  25. data/lib/stimulus_reflex/request_parameters.rb +19 -0
  26. data/lib/stimulus_reflex/{logger.rb → utils/logger.rb} +0 -2
  27. data/lib/stimulus_reflex/{sanity_checker.rb → utils/sanity_checker.rb} +58 -10
  28. data/lib/stimulus_reflex/version.rb +1 -1
  29. data/lib/tasks/stimulus_reflex/install.rake +6 -4
  30. data/package.json +6 -5
  31. data/stimulus_reflex.gemspec +5 -5
  32. data/test/broadcasters/broadcaster_test_case.rb +1 -1
  33. data/test/broadcasters/nothing_broadcaster_test.rb +5 -3
  34. data/test/broadcasters/page_broadcaster_test.rb +8 -4
  35. data/test/broadcasters/selector_broadcaster_test.rb +171 -55
  36. data/test/callbacks_test.rb +652 -0
  37. data/test/concern_enhancer_test.rb +54 -0
  38. data/test/element_test.rb +181 -0
  39. data/test/reflex_test.rb +1 -1
  40. data/test/test_helper.rb +4 -0
  41. data/test/tmp/app/reflexes/application_reflex.rb +2 -2
  42. data/test/tmp/app/reflexes/user_reflex.rb +3 -2
  43. data/yarn.lock +1138 -919
  44. metadata +39 -28
  45. data/tags +0 -156
@@ -0,0 +1,54 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative "test_helper"
4
+
5
+ class StimulusReflex::ConcernTest < ActiveSupport::TestCase
6
+ module TestConcern
7
+ extend ActiveSupport::Concern
8
+ include StimulusReflex::ConcernEnhancer
9
+ end
10
+
11
+ class TestReflex < StimulusReflex::Reflex
12
+ include TestConcern
13
+
14
+ def initialize
15
+ end
16
+ end
17
+
18
+ class TestController < ActionController::Base
19
+ include TestConcern
20
+ end
21
+
22
+ class TestModel < ActiveRecord::Base
23
+ include TestConcern
24
+ end
25
+
26
+ test "included in a reflex it stubs controller and model methods" do
27
+ assert_nil TestReflex.helper_method
28
+ assert_nil TestReflex.before_action
29
+ assert_nil TestReflex.around_action
30
+ assert_nil TestReflex.after_action
31
+
32
+ assert_nil TestReflex.before_save
33
+ assert_nil TestReflex.around_save
34
+ assert_nil TestReflex.after_save
35
+
36
+ refute_nil TestReflex.before_reflex
37
+ end
38
+
39
+ test "included in a controller it stubs reflex methods" do
40
+ assert_nil TestController.before_reflex
41
+ assert_nil TestController.around_reflex
42
+ assert_nil TestController.after_reflex
43
+
44
+ refute_nil TestController.before_action
45
+ end
46
+
47
+ test "included in a model it stubs reflex methods" do
48
+ assert_nil TestModel.before_reflex
49
+ assert_nil TestModel.around_reflex
50
+ assert_nil TestModel.after_reflex
51
+
52
+ refute_nil TestModel.after_save
53
+ end
54
+ end
@@ -0,0 +1,181 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative "test_helper"
4
+
5
+ class StimulusReflex::ElementTest < ActiveSupport::TestCase
6
+ element = StimulusReflex::Element.new({
7
+ "attrs" => {
8
+ "user" => "First User",
9
+ "user-id" => "1"
10
+ },
11
+ "dataset" => {
12
+ "dataset" => {
13
+ "data-post" => "The Post",
14
+ "data-post-id" => "2"
15
+ },
16
+ "datasetAll" => {}
17
+ }
18
+ })
19
+
20
+ test "should be able to access attributes on element itself" do
21
+ assert_equal "First User", element.user
22
+ assert_equal "First User", element["user"]
23
+ assert_equal "First User", element[:user]
24
+
25
+ assert_equal "1", element.user_id
26
+ assert_equal "1", element["user_id"]
27
+ assert_equal "1", element["user-id"]
28
+ assert_equal "1", element[:user_id]
29
+
30
+ assert_equal "The Post", element.data_post
31
+ assert_equal "The Post", element["data_post"]
32
+ assert_equal "The Post", element["data-post"]
33
+ assert_equal "The Post", element[:data_post]
34
+
35
+ assert_equal "2", element.data_post_id
36
+ assert_equal "2", element["data_post_id"]
37
+ assert_equal "2", element["data-post-id"]
38
+ assert_equal "2", element[:data_post_id]
39
+ end
40
+
41
+ test "should be able to access attributes via attributes" do
42
+ assert_equal "First User", element.attributes.user
43
+ assert_equal "First User", element.attributes["user"]
44
+ assert_equal "First User", element.attributes[:user]
45
+
46
+ assert_equal "1", element.attributes.user_id
47
+ assert_equal "1", element.attributes["user_id"]
48
+ assert_equal "1", element.attributes["user-id"]
49
+ assert_equal "1", element.attributes[:user_id]
50
+ end
51
+
52
+ test "should be able to access attributes via dataset" do
53
+ assert_equal "The Post", element.dataset.post
54
+ assert_equal "The Post", element.dataset["post"]
55
+ assert_equal "The Post", element.dataset[:post]
56
+
57
+ assert_equal "2", element.dataset.post_id
58
+ assert_equal "2", element.dataset["post-id"]
59
+ assert_equal "2", element.dataset["post_id"]
60
+ assert_equal "2", element.dataset[:post_id]
61
+ end
62
+
63
+ test "should be able to access attributes via data_attributes" do
64
+ assert_equal "The Post", element.data_attributes.post
65
+ assert_equal "The Post", element.data_attributes["post"]
66
+ assert_equal "The Post", element.data_attributes[:post]
67
+
68
+ assert_equal "2", element.data_attributes.post_id
69
+ assert_equal "2", element.data_attributes["post-id"]
70
+ assert_equal "2", element.data_attributes["post_id"]
71
+ assert_equal "2", element.data_attributes[:post_id]
72
+ end
73
+
74
+ test "should pluralize keys from datasetAll" do
75
+ data = {
76
+ "dataset" => {
77
+ "dataset" => {
78
+ "data-reflex" => "click",
79
+ "data-sex" => "male"
80
+ },
81
+ "datasetAll" => {
82
+ "data-reflex" => ["click"],
83
+ "data-post-id" => ["1", "2", "3", "4"],
84
+ "data-name" => ["steve", "bill", "steve", "mike"]
85
+ }
86
+ }
87
+ }
88
+
89
+ dataset_all_element = StimulusReflex::Element.new(data)
90
+
91
+ assert_equal "click", dataset_all_element.dataset.reflex
92
+ assert_equal "male", dataset_all_element.dataset.sex
93
+
94
+ assert_equal ["steve", "bill", "steve", "mike"], dataset_all_element.dataset.names
95
+ assert_equal ["1", "2", "3", "4"], dataset_all_element.dataset.post_ids
96
+ assert_equal ["click"], dataset_all_element.dataset.reflexes
97
+ end
98
+
99
+ test "should pluralize irregular words from datasetAll" do
100
+ data = {
101
+ "dataset" => {
102
+ "dataset" => {},
103
+ "datasetAll" => {
104
+ "data-cat" => ["cat"],
105
+ "data-child" => ["child"],
106
+ "data-women" => ["woman"],
107
+ "data-man" => ["man"],
108
+ "data-wolf" => ["wolf"],
109
+ "data-library" => ["library"],
110
+ "data-mouse" => ["mouse"]
111
+ }
112
+ }
113
+ }
114
+
115
+ pluralize_element = StimulusReflex::Element.new(data)
116
+
117
+ assert_equal ["cat"], pluralize_element.dataset.cats
118
+ assert_equal ["child"], pluralize_element.dataset.children
119
+ assert_equal ["woman"], pluralize_element.dataset.women
120
+ assert_equal ["man"], pluralize_element.dataset.men
121
+ assert_equal ["wolf"], pluralize_element.dataset.wolves
122
+ assert_equal ["library"], pluralize_element.dataset.libraries
123
+ assert_equal ["mouse"], pluralize_element.dataset.mice
124
+ end
125
+
126
+ test "should not pluralize plural key" do
127
+ data = {
128
+ "dataset" => {
129
+ "datasetAll" => {
130
+ "data-ids" => ["1", "2"]
131
+ }
132
+ }
133
+ }
134
+
135
+ assert_equal ["1", "2"], StimulusReflex::Element.new(data).dataset.ids
136
+ assert_nil StimulusReflex::Element.new(data).dataset.idss
137
+ end
138
+
139
+ test "should not build array with pluralized key" do
140
+ data = {
141
+ "dataset" => {
142
+ "dataset" => {
143
+ "data-ids" => "1"
144
+ }
145
+ }
146
+ }
147
+
148
+ assert_equal "1", StimulusReflex::Element.new(data).dataset.ids
149
+ end
150
+
151
+ test "should handle overlapping singluar and plural key names" do
152
+ data = {
153
+ "dataset" => {
154
+ "dataset" => {
155
+ "data-id" => "1",
156
+ "data-ids" => "2",
157
+ "data-post-id" => "9",
158
+ "data-post-ids" => "10",
159
+ "data-duplicate-value" => "19",
160
+ "data-duplicate-values" => "20"
161
+ },
162
+ "datasetAll" => {
163
+ "data-id" => ["3", "4"],
164
+ "data-post-ids" => ["11", "12"],
165
+ "data-duplicate-value" => ["20", "21", "22"]
166
+ }
167
+ }
168
+ }
169
+
170
+ overlapping_keys_element = StimulusReflex::Element.new(data)
171
+
172
+ assert_equal "1", overlapping_keys_element.dataset.id
173
+ assert_equal ["2", "3", "4"], overlapping_keys_element.dataset.ids
174
+
175
+ assert_equal "9", overlapping_keys_element.dataset.post_id
176
+ assert_equal ["10", "11", "12"], overlapping_keys_element.dataset.post_ids
177
+
178
+ assert_equal "19", overlapping_keys_element.dataset.duplicate_value
179
+ assert_equal ["20", "20", "21", "22"], overlapping_keys_element.dataset.duplicate_values
180
+ end
181
+ end
data/test/reflex_test.rb CHANGED
@@ -10,7 +10,7 @@ class StimulusReflex::ReflexTest < ActionCable::Channel::TestCase
10
10
  def connection.env
11
11
  @env ||= {}
12
12
  end
13
- @reflex = StimulusReflex::Reflex.new(subscribe, url: "https://test.stimulusreflex.com")
13
+ @reflex = StimulusReflex::Reflex.new(subscribe, url: "https://test.stimulusreflex.com", client_attributes: {reflex_id: "666"})
14
14
  @reflex.controller_class.view_paths << Rails.root.join("test/views")
15
15
  end
16
16
 
data/test/test_helper.rb CHANGED
@@ -5,6 +5,7 @@ ENV["RAILS_ENV"] ||= "test"
5
5
  require "minitest/mock"
6
6
  require "rails"
7
7
  require "active_model"
8
+ require "active_record"
8
9
  require "action_controller"
9
10
  require "pry"
10
11
  require_relative "../lib/stimulus_reflex"
@@ -38,6 +39,9 @@ end
38
39
  class TestModel
39
40
  include ActiveModel::Model
40
41
  attr_accessor :id
42
+ def is_a?(klass)
43
+ klass == ActiveRecord::Base
44
+ end
41
45
  end
42
46
 
43
47
  StimulusReflex.configuration.parent_channel = "ActionCable::Channel::Base"
@@ -1,12 +1,12 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  class ApplicationReflex < StimulusReflex::Reflex
4
- # Put application-wide Reflex behavior and callbacks in this file.
4
+ # Put application-wide Reflex behavior and callbacks in this file.
5
5
  #
6
6
  # Example:
7
7
  #
8
8
  # # If your ActionCable connection is: `identified_by :current_user`
9
9
  # delegate :current_user, to: :connection
10
10
  #
11
- # Learn more at: https://docs.stimulusreflex.com/reflexes#reflex-classes
11
+ # Learn more at: https://docs.stimulusreflex.com/rtfm/reflex-classes
12
12
  end
@@ -17,12 +17,13 @@ class UserReflex < ApplicationReflex
17
17
  # - unsigned - use an unsigned Global ID to map dataset attribute to a model eg. element.unsigned[:foo]
18
18
  # - cable_ready - a special cable_ready that can broadcast to the current visitor (no brackets needed)
19
19
  # - reflex_id - a UUIDv4 that uniquely identies each Reflex
20
+ # - tab_id - a UUIDv4 that uniquely identifies the browser tab
20
21
  #
21
22
  # Example:
22
23
  #
23
24
  # before_reflex do
24
25
  # # throw :abort # this will prevent the Reflex from continuing
25
- # # learn more about callbacks at https://docs.stimulusreflex.com/lifecycle
26
+ # # learn more about callbacks at https://docs.stimulusreflex.com/rtfm/lifecycle
26
27
  # end
27
28
  #
28
29
  # def example(argument=true)
@@ -30,7 +31,7 @@ class UserReflex < ApplicationReflex
30
31
  # # Any declared instance variables will be made available to the Rails controller and view.
31
32
  # end
32
33
  #
33
- # Learn more at: https://docs.stimulusreflex.com/reflexes#reflex-classes
34
+ # Learn more at: https://docs.stimulusreflex.com/rtfm/reflex-classes
34
35
 
35
36
  def update
36
37
  end
data/yarn.lock CHANGED
@@ -16,197 +16,203 @@
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.12.11":
20
- version "7.12.11"
21
- resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.12.11.tgz#f4ad435aa263db935b8f10f2c552d23fb716a63f"
22
- integrity sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw==
19
+ "@babel/code-frame@^7.0.0", "@babel/code-frame@^7.12.13":
20
+ version "7.12.13"
21
+ resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.12.13.tgz#dcfc826beef65e75c50e21d3837d7d95798dd658"
22
+ integrity sha512-HV1Cm0Q3ZrpCR93tkWOYiuYIgLxZXZFVG2VgK+MBWjUqZTundupbfx2aXarXuw5Ko5aMcjtJgbSs4vUGBS5v6g==
23
23
  dependencies:
24
- "@babel/highlight" "^7.10.4"
24
+ "@babel/highlight" "^7.12.13"
25
25
 
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==
26
+ "@babel/compat-data@^7.13.11", "@babel/compat-data@^7.13.15", "@babel/compat-data@^7.14.0":
27
+ version "7.14.0"
28
+ resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.14.0.tgz#a901128bce2ad02565df95e6ecbf195cf9465919"
29
+ integrity sha512-vu9V3uMM/1o5Hl5OekMUowo3FqXLJSw+s+66nt0fSWVWTtmosdzn45JHOB3cPtZoe6CTBDzvSw0RdOY85Q37+Q==
30
30
 
31
31
  "@babel/core@^7.6.2":
32
- version "7.12.10"
33
- resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.12.10.tgz#b79a2e1b9f70ed3d84bbfb6d8c4ef825f606bccd"
34
- integrity sha512-eTAlQKq65zHfkHZV0sIVODCPGVgoo1HdBlbSLi9CqOzuZanMv2ihzY+4paiKr1mH+XmYESMAmJ/dpZ68eN6d8w==
35
- dependencies:
36
- "@babel/code-frame" "^7.10.4"
37
- "@babel/generator" "^7.12.10"
38
- "@babel/helper-module-transforms" "^7.12.1"
39
- "@babel/helpers" "^7.12.5"
40
- "@babel/parser" "^7.12.10"
41
- "@babel/template" "^7.12.7"
42
- "@babel/traverse" "^7.12.10"
43
- "@babel/types" "^7.12.10"
32
+ version "7.14.3"
33
+ resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.14.3.tgz#5395e30405f0776067fbd9cf0884f15bfb770a38"
34
+ integrity sha512-jB5AmTKOCSJIZ72sd78ECEhuPiDMKlQdDI/4QRI6lzYATx5SSogS1oQA2AoPecRCknm30gHi2l+QVvNUu3wZAg==
35
+ dependencies:
36
+ "@babel/code-frame" "^7.12.13"
37
+ "@babel/generator" "^7.14.3"
38
+ "@babel/helper-compilation-targets" "^7.13.16"
39
+ "@babel/helper-module-transforms" "^7.14.2"
40
+ "@babel/helpers" "^7.14.0"
41
+ "@babel/parser" "^7.14.3"
42
+ "@babel/template" "^7.12.13"
43
+ "@babel/traverse" "^7.14.2"
44
+ "@babel/types" "^7.14.2"
44
45
  convert-source-map "^1.7.0"
45
46
  debug "^4.1.0"
46
- gensync "^1.0.0-beta.1"
47
+ gensync "^1.0.0-beta.2"
47
48
  json5 "^2.1.2"
48
- lodash "^4.17.19"
49
- semver "^5.4.1"
49
+ semver "^6.3.0"
50
50
  source-map "^0.5.0"
51
51
 
52
- "@babel/generator@^7.12.10", "@babel/generator@^7.12.11":
53
- version "7.12.11"
54
- resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.12.11.tgz#98a7df7b8c358c9a37ab07a24056853016aba3af"
55
- integrity sha512-Ggg6WPOJtSi8yYQvLVjG8F/TlpWDlKx0OpS4Kt+xMQPs5OaGYWy+v1A+1TvxI6sAMGZpKWWoAQ1DaeQbImlItA==
52
+ "@babel/generator@^7.14.2", "@babel/generator@^7.14.3":
53
+ version "7.14.3"
54
+ resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.14.3.tgz#0c2652d91f7bddab7cccc6ba8157e4f40dcedb91"
55
+ integrity sha512-bn0S6flG/j0xtQdz3hsjJ624h3W0r3llttBMfyHX3YrZ/KtLYr15bjA0FXkgW7FpvrDuTuElXeVjiKlYRpnOFA==
56
56
  dependencies:
57
- "@babel/types" "^7.12.11"
57
+ "@babel/types" "^7.14.2"
58
58
  jsesc "^2.5.1"
59
59
  source-map "^0.5.0"
60
60
 
61
- "@babel/helper-annotate-as-pure@^7.10.4":
62
- version "7.12.10"
63
- resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.12.10.tgz#54ab9b000e60a93644ce17b3f37d313aaf1d115d"
64
- integrity sha512-XplmVbC1n+KY6jL8/fgLVXXUauDIB+lD5+GsQEh6F6GBF1dq1qy4DP4yXWzDKcoqXB3X58t61e85Fitoww4JVQ==
61
+ "@babel/helper-annotate-as-pure@^7.12.13":
62
+ version "7.12.13"
63
+ resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.12.13.tgz#0f58e86dfc4bb3b1fcd7db806570e177d439b6ab"
64
+ integrity sha512-7YXfX5wQ5aYM/BOlbSccHDbuXXFPxeoUmfWtz8le2yTkTZc+BxsiEnENFoi2SlmA8ewDkG2LgIMIVzzn2h8kfw==
65
65
  dependencies:
66
- "@babel/types" "^7.12.10"
66
+ "@babel/types" "^7.12.13"
67
67
 
68
- "@babel/helper-builder-binary-assignment-operator-visitor@^7.10.4":
69
- version "7.10.4"
70
- resolved "https://registry.yarnpkg.com/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.10.4.tgz#bb0b75f31bf98cbf9ff143c1ae578b87274ae1a3"
71
- integrity sha512-L0zGlFrGWZK4PbT8AszSfLTM5sDU1+Az/En9VrdT8/LmEiJt4zXt+Jve9DCAnQcbqDhCI+29y/L93mrDzddCcg==
68
+ "@babel/helper-builder-binary-assignment-operator-visitor@^7.12.13":
69
+ version "7.12.13"
70
+ resolved "https://registry.yarnpkg.com/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.12.13.tgz#6bc20361c88b0a74d05137a65cac8d3cbf6f61fc"
71
+ integrity sha512-CZOv9tGphhDRlVjVkAgm8Nhklm9RzSmWpX2my+t7Ua/KT616pEzXsQCjinzvkRvHWJ9itO4f296efroX23XCMA==
72
72
  dependencies:
73
- "@babel/helper-explode-assignable-expression" "^7.10.4"
74
- "@babel/types" "^7.10.4"
73
+ "@babel/helper-explode-assignable-expression" "^7.12.13"
74
+ "@babel/types" "^7.12.13"
75
75
 
76
- "@babel/helper-compilation-targets@^7.12.5":
77
- version "7.12.5"
78
- resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.12.5.tgz#cb470c76198db6a24e9dbc8987275631e5d29831"
79
- integrity sha512-+qH6NrscMolUlzOYngSBMIOQpKUGPPsc61Bu5W10mg84LxZ7cmvnBHzARKbDoFxVvqqAbj6Tg6N7bSrWSPXMyw==
76
+ "@babel/helper-compilation-targets@^7.13.0", "@babel/helper-compilation-targets@^7.13.16":
77
+ version "7.13.16"
78
+ resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.13.16.tgz#6e91dccf15e3f43e5556dffe32d860109887563c"
79
+ integrity sha512-3gmkYIrpqsLlieFwjkGgLaSHmhnvlAYzZLlYVjlW+QwI+1zE17kGxuJGmIqDQdYp56XdmGeD+Bswx0UTyG18xA==
80
80
  dependencies:
81
- "@babel/compat-data" "^7.12.5"
82
- "@babel/helper-validator-option" "^7.12.1"
81
+ "@babel/compat-data" "^7.13.15"
82
+ "@babel/helper-validator-option" "^7.12.17"
83
83
  browserslist "^4.14.5"
84
- semver "^5.5.0"
84
+ semver "^6.3.0"
85
85
 
86
- "@babel/helper-create-class-features-plugin@^7.12.1":
87
- version "7.12.1"
88
- resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.12.1.tgz#3c45998f431edd4a9214c5f1d3ad1448a6137f6e"
89
- integrity sha512-hkL++rWeta/OVOBTRJc9a5Azh5mt5WgZUGAKMD8JM141YsE08K//bp1unBBieO6rUKkIPyUE0USQ30jAy3Sk1w==
86
+ "@babel/helper-create-class-features-plugin@^7.13.0", "@babel/helper-create-class-features-plugin@^7.14.0", "@babel/helper-create-class-features-plugin@^7.14.3":
87
+ version "7.14.3"
88
+ resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.14.3.tgz#832111bcf4f57ca57a4c5b1a000fc125abc6554a"
89
+ integrity sha512-BnEfi5+6J2Lte9LeiL6TxLWdIlEv9Woacc1qXzXBgbikcOzMRM2Oya5XGg/f/ngotv1ej2A/b+3iJH8wbS1+lQ==
90
90
  dependencies:
91
- "@babel/helper-function-name" "^7.10.4"
92
- "@babel/helper-member-expression-to-functions" "^7.12.1"
93
- "@babel/helper-optimise-call-expression" "^7.10.4"
94
- "@babel/helper-replace-supers" "^7.12.1"
95
- "@babel/helper-split-export-declaration" "^7.10.4"
91
+ "@babel/helper-annotate-as-pure" "^7.12.13"
92
+ "@babel/helper-function-name" "^7.14.2"
93
+ "@babel/helper-member-expression-to-functions" "^7.13.12"
94
+ "@babel/helper-optimise-call-expression" "^7.12.13"
95
+ "@babel/helper-replace-supers" "^7.14.3"
96
+ "@babel/helper-split-export-declaration" "^7.12.13"
96
97
 
97
- "@babel/helper-create-regexp-features-plugin@^7.12.1":
98
- version "7.12.7"
99
- resolved "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.12.7.tgz#2084172e95443fa0a09214ba1bb328f9aea1278f"
100
- integrity sha512-idnutvQPdpbduutvi3JVfEgcVIHooQnhvhx0Nk9isOINOIGYkZea1Pk2JlJRiUnMefrlvr0vkByATBY/mB4vjQ==
98
+ "@babel/helper-create-regexp-features-plugin@^7.12.13":
99
+ version "7.14.3"
100
+ resolved "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.14.3.tgz#149aa6d78c016e318c43e2409a0ae9c136a86688"
101
+ integrity sha512-JIB2+XJrb7v3zceV2XzDhGIB902CmKGSpSl4q2C6agU9SNLG/2V1RtFRGPG1Ajh9STj3+q6zJMOC+N/pp2P9DA==
101
102
  dependencies:
102
- "@babel/helper-annotate-as-pure" "^7.10.4"
103
+ "@babel/helper-annotate-as-pure" "^7.12.13"
103
104
  regexpu-core "^4.7.1"
104
105
 
105
- "@babel/helper-define-map@^7.10.4":
106
- version "7.10.5"
107
- resolved "https://registry.yarnpkg.com/@babel/helper-define-map/-/helper-define-map-7.10.5.tgz#b53c10db78a640800152692b13393147acb9bb30"
108
- integrity sha512-fMw4kgFB720aQFXSVaXr79pjjcW5puTCM16+rECJ/plGS+zByelE8l9nCpV1GibxTnFVmUuYG9U8wYfQHdzOEQ==
106
+ "@babel/helper-define-polyfill-provider@^0.2.0":
107
+ version "0.2.0"
108
+ resolved "https://registry.yarnpkg.com/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.2.0.tgz#a640051772045fedaaecc6f0c6c69f02bdd34bf1"
109
+ integrity sha512-JT8tHuFjKBo8NnaUbblz7mIu1nnvUDiHVjXXkulZULyidvo/7P6TY7+YqpV37IfF+KUFxmlK04elKtGKXaiVgw==
109
110
  dependencies:
110
- "@babel/helper-function-name" "^7.10.4"
111
- "@babel/types" "^7.10.5"
112
- lodash "^4.17.19"
111
+ "@babel/helper-compilation-targets" "^7.13.0"
112
+ "@babel/helper-module-imports" "^7.12.13"
113
+ "@babel/helper-plugin-utils" "^7.13.0"
114
+ "@babel/traverse" "^7.13.0"
115
+ debug "^4.1.1"
116
+ lodash.debounce "^4.0.8"
117
+ resolve "^1.14.2"
118
+ semver "^6.1.2"
113
119
 
114
- "@babel/helper-explode-assignable-expression@^7.10.4":
115
- version "7.12.1"
116
- resolved "https://registry.yarnpkg.com/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.12.1.tgz#8006a466695c4ad86a2a5f2fb15b5f2c31ad5633"
117
- integrity sha512-dmUwH8XmlrUpVqgtZ737tK88v07l840z9j3OEhCLwKTkjlvKpfqXVIZ0wpK3aeOxspwGrf/5AP5qLx4rO3w5rA==
120
+ "@babel/helper-explode-assignable-expression@^7.12.13":
121
+ version "7.13.0"
122
+ resolved "https://registry.yarnpkg.com/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.13.0.tgz#17b5c59ff473d9f956f40ef570cf3a76ca12657f"
123
+ integrity sha512-qS0peLTDP8kOisG1blKbaoBg/o9OSa1qoumMjTK5pM+KDTtpxpsiubnCGP34vK8BXGcb2M9eigwgvoJryrzwWA==
118
124
  dependencies:
119
- "@babel/types" "^7.12.1"
125
+ "@babel/types" "^7.13.0"
120
126
 
121
- "@babel/helper-function-name@^7.10.4", "@babel/helper-function-name@^7.12.11":
122
- version "7.12.11"
123
- resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.12.11.tgz#1fd7738aee5dcf53c3ecff24f1da9c511ec47b42"
124
- integrity sha512-AtQKjtYNolKNi6nNNVLQ27CP6D9oFR6bq/HPYSizlzbp7uC1M59XJe8L+0uXjbIaZaUJF99ruHqVGiKXU/7ybA==
127
+ "@babel/helper-function-name@^7.12.13", "@babel/helper-function-name@^7.14.2":
128
+ version "7.14.2"
129
+ resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.14.2.tgz#397688b590760b6ef7725b5f0860c82427ebaac2"
130
+ integrity sha512-NYZlkZRydxw+YT56IlhIcS8PAhb+FEUiOzuhFTfqDyPmzAhRge6ua0dQYT/Uh0t/EDHq05/i+e5M2d4XvjgarQ==
125
131
  dependencies:
126
- "@babel/helper-get-function-arity" "^7.12.10"
127
- "@babel/template" "^7.12.7"
128
- "@babel/types" "^7.12.11"
132
+ "@babel/helper-get-function-arity" "^7.12.13"
133
+ "@babel/template" "^7.12.13"
134
+ "@babel/types" "^7.14.2"
129
135
 
130
- "@babel/helper-get-function-arity@^7.12.10":
131
- version "7.12.10"
132
- resolved "https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.12.10.tgz#b158817a3165b5faa2047825dfa61970ddcc16cf"
133
- integrity sha512-mm0n5BPjR06wh9mPQaDdXWDoll/j5UpCAPl1x8fS71GHm7HA6Ua2V4ylG1Ju8lvcTOietbPNNPaSilKj+pj+Ag==
136
+ "@babel/helper-get-function-arity@^7.12.13":
137
+ version "7.12.13"
138
+ resolved "https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.12.13.tgz#bc63451d403a3b3082b97e1d8b3fe5bd4091e583"
139
+ integrity sha512-DjEVzQNz5LICkzN0REdpD5prGoidvbdYk1BVgRUOINaWJP2t6avB27X1guXK1kXNrX0WMfsrm1A/ZBthYuIMQg==
134
140
  dependencies:
135
- "@babel/types" "^7.12.10"
141
+ "@babel/types" "^7.12.13"
136
142
 
137
- "@babel/helper-hoist-variables@^7.10.4":
138
- version "7.10.4"
139
- resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.10.4.tgz#d49b001d1d5a68ca5e6604dda01a6297f7c9381e"
140
- integrity sha512-wljroF5PgCk2juF69kanHVs6vrLwIPNp6DLD+Lrl3hoQ3PpPPikaDRNFA+0t81NOoMt2DL6WW/mdU8k4k6ZzuA==
143
+ "@babel/helper-hoist-variables@^7.13.0":
144
+ version "7.13.16"
145
+ resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.13.16.tgz#1b1651249e94b51f8f0d33439843e33e39775b30"
146
+ integrity sha512-1eMtTrXtrwscjcAeO4BVK+vvkxaLJSPFz1w1KLawz6HLNi9bPFGBNwwDyVfiu1Tv/vRRFYfoGaKhmAQPGPn5Wg==
141
147
  dependencies:
142
- "@babel/types" "^7.10.4"
148
+ "@babel/traverse" "^7.13.15"
149
+ "@babel/types" "^7.13.16"
143
150
 
144
- "@babel/helper-member-expression-to-functions@^7.12.1", "@babel/helper-member-expression-to-functions@^7.12.7":
145
- version "7.12.7"
146
- resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.12.7.tgz#aa77bd0396ec8114e5e30787efa78599d874a855"
147
- integrity sha512-DCsuPyeWxeHgh1Dus7APn7iza42i/qXqiFPWyBDdOFtvS581JQePsc1F/nD+fHrcswhLlRc2UpYS1NwERxZhHw==
151
+ "@babel/helper-member-expression-to-functions@^7.13.12":
152
+ version "7.13.12"
153
+ resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.13.12.tgz#dfe368f26d426a07299d8d6513821768216e6d72"
154
+ integrity sha512-48ql1CLL59aKbU94Y88Xgb2VFy7a95ykGRbJJaaVv+LX5U8wFpLfiGXJJGUozsmA1oEh/o5Bp60Voq7ACyA/Sw==
148
155
  dependencies:
149
- "@babel/types" "^7.12.7"
156
+ "@babel/types" "^7.13.12"
150
157
 
151
- "@babel/helper-module-imports@^7.12.1", "@babel/helper-module-imports@^7.12.5":
152
- version "7.12.5"
153
- resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.12.5.tgz#1bfc0229f794988f76ed0a4d4e90860850b54dfb"
154
- integrity sha512-SR713Ogqg6++uexFRORf/+nPXMmWIn80TALu0uaFb+iQIUoR7bOC7zBWyzBs5b3tBBJXuyD0cRu1F15GyzjOWA==
158
+ "@babel/helper-module-imports@^7.12.13", "@babel/helper-module-imports@^7.13.12":
159
+ version "7.13.12"
160
+ resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.13.12.tgz#c6a369a6f3621cb25da014078684da9196b61977"
161
+ integrity sha512-4cVvR2/1B693IuOvSI20xqqa/+bl7lqAMR59R4iu39R9aOX8/JoYY1sFaNvUMyMBGnHdwvJgUrzNLoUZxXypxA==
155
162
  dependencies:
156
- "@babel/types" "^7.12.5"
163
+ "@babel/types" "^7.13.12"
157
164
 
158
- "@babel/helper-module-transforms@^7.12.1":
159
- version "7.12.1"
160
- resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.12.1.tgz#7954fec71f5b32c48e4b303b437c34453fd7247c"
161
- integrity sha512-QQzehgFAZ2bbISiCpmVGfiGux8YVFXQ0abBic2Envhej22DVXV9nCFaS5hIQbkyo1AdGb+gNME2TSh3hYJVV/w==
162
- dependencies:
163
- "@babel/helper-module-imports" "^7.12.1"
164
- "@babel/helper-replace-supers" "^7.12.1"
165
- "@babel/helper-simple-access" "^7.12.1"
166
- "@babel/helper-split-export-declaration" "^7.11.0"
167
- "@babel/helper-validator-identifier" "^7.10.4"
168
- "@babel/template" "^7.10.4"
169
- "@babel/traverse" "^7.12.1"
170
- "@babel/types" "^7.12.1"
171
- lodash "^4.17.19"
165
+ "@babel/helper-module-transforms@^7.13.0", "@babel/helper-module-transforms@^7.14.0", "@babel/helper-module-transforms@^7.14.2":
166
+ version "7.14.2"
167
+ resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.14.2.tgz#ac1cc30ee47b945e3e0c4db12fa0c5389509dfe5"
168
+ integrity sha512-OznJUda/soKXv0XhpvzGWDnml4Qnwp16GN+D/kZIdLsWoHj05kyu8Rm5kXmMef+rVJZ0+4pSGLkeixdqNUATDA==
169
+ dependencies:
170
+ "@babel/helper-module-imports" "^7.13.12"
171
+ "@babel/helper-replace-supers" "^7.13.12"
172
+ "@babel/helper-simple-access" "^7.13.12"
173
+ "@babel/helper-split-export-declaration" "^7.12.13"
174
+ "@babel/helper-validator-identifier" "^7.14.0"
175
+ "@babel/template" "^7.12.13"
176
+ "@babel/traverse" "^7.14.2"
177
+ "@babel/types" "^7.14.2"
172
178
 
173
- "@babel/helper-optimise-call-expression@^7.10.4", "@babel/helper-optimise-call-expression@^7.12.10":
174
- version "7.12.10"
175
- resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.12.10.tgz#94ca4e306ee11a7dd6e9f42823e2ac6b49881e2d"
176
- integrity sha512-4tpbU0SrSTjjt65UMWSrUOPZTsgvPgGG4S8QSTNHacKzpS51IVWGDj0yCwyeZND/i+LSN2g/O63jEXEWm49sYQ==
179
+ "@babel/helper-optimise-call-expression@^7.12.13":
180
+ version "7.12.13"
181
+ resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.12.13.tgz#5c02d171b4c8615b1e7163f888c1c81c30a2aaea"
182
+ integrity sha512-BdWQhoVJkp6nVjB7nkFWcn43dkprYauqtk++Py2eaf/GRDFm5BxRqEIZCiHlZUGAVmtwKcsVL1dC68WmzeFmiA==
177
183
  dependencies:
178
- "@babel/types" "^7.12.10"
184
+ "@babel/types" "^7.12.13"
179
185
 
180
- "@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":
181
- version "7.10.4"
182
- resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.10.4.tgz#2f75a831269d4f677de49986dff59927533cf375"
183
- integrity sha512-O4KCvQA6lLiMU9l2eawBPMf1xPP8xPfB3iEQw150hOVTqj/rfXz0ThTb4HEzqQfs2Bmo5Ay8BzxfzVtBrr9dVg==
186
+ "@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.12.13", "@babel/helper-plugin-utils@^7.13.0", "@babel/helper-plugin-utils@^7.8.0", "@babel/helper-plugin-utils@^7.8.3":
187
+ version "7.13.0"
188
+ resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.13.0.tgz#806526ce125aed03373bc416a828321e3a6a33af"
189
+ integrity sha512-ZPafIPSwzUlAoWT8DKs1W2VyF2gOWthGd5NGFMsBcMMol+ZhK+EQY/e6V96poa6PA/Bh+C9plWN0hXO1uB8AfQ==
184
190
 
185
- "@babel/helper-remap-async-to-generator@^7.12.1":
186
- version "7.12.1"
187
- resolved "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.12.1.tgz#8c4dbbf916314f6047dc05e6a2217074238347fd"
188
- integrity sha512-9d0KQCRM8clMPcDwo8SevNs+/9a8yWVVmaE80FGJcEP8N1qToREmWEGnBn8BUlJhYRFz6fqxeRL1sl5Ogsed7A==
191
+ "@babel/helper-remap-async-to-generator@^7.13.0":
192
+ version "7.13.0"
193
+ resolved "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.13.0.tgz#376a760d9f7b4b2077a9dd05aa9c3927cadb2209"
194
+ integrity sha512-pUQpFBE9JvC9lrQbpX0TmeNIy5s7GnZjna2lhhcHC7DzgBs6fWn722Y5cfwgrtrqc7NAJwMvOa0mKhq6XaE4jg==
189
195
  dependencies:
190
- "@babel/helper-annotate-as-pure" "^7.10.4"
191
- "@babel/helper-wrap-function" "^7.10.4"
192
- "@babel/types" "^7.12.1"
196
+ "@babel/helper-annotate-as-pure" "^7.12.13"
197
+ "@babel/helper-wrap-function" "^7.13.0"
198
+ "@babel/types" "^7.13.0"
193
199
 
194
- "@babel/helper-replace-supers@^7.12.1":
195
- version "7.12.11"
196
- resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.12.11.tgz#ea511658fc66c7908f923106dd88e08d1997d60d"
197
- integrity sha512-q+w1cqmhL7R0FNzth/PLLp2N+scXEK/L2AHbXUyydxp828F4FEa5WcVoqui9vFRiHDQErj9Zof8azP32uGVTRA==
200
+ "@babel/helper-replace-supers@^7.12.13", "@babel/helper-replace-supers@^7.13.12", "@babel/helper-replace-supers@^7.14.3":
201
+ version "7.14.3"
202
+ resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.14.3.tgz#ca17b318b859d107f0e9b722d58cf12d94436600"
203
+ integrity sha512-Rlh8qEWZSTfdz+tgNV/N4gz1a0TMNwCUcENhMjHTHKp3LseYH5Jha0NSlyTQWMnjbYcwFt+bqAMqSLHVXkQ6UA==
198
204
  dependencies:
199
- "@babel/helper-member-expression-to-functions" "^7.12.7"
200
- "@babel/helper-optimise-call-expression" "^7.12.10"
201
- "@babel/traverse" "^7.12.10"
202
- "@babel/types" "^7.12.11"
205
+ "@babel/helper-member-expression-to-functions" "^7.13.12"
206
+ "@babel/helper-optimise-call-expression" "^7.12.13"
207
+ "@babel/traverse" "^7.14.2"
208
+ "@babel/types" "^7.14.2"
203
209
 
204
- "@babel/helper-simple-access@^7.12.1":
205
- version "7.12.1"
206
- resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.12.1.tgz#32427e5aa61547d38eb1e6eaf5fd1426fdad9136"
207
- integrity sha512-OxBp7pMrjVewSSC8fXDFrHrBcJATOOFssZwv16F3/6Xtc138GHybBfPbm9kfiqQHKhYQrlamWILwlDCeyMFEaA==
210
+ "@babel/helper-simple-access@^7.13.12":
211
+ version "7.13.12"
212
+ resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.13.12.tgz#dd6c538afb61819d205a012c31792a39c7a5eaf6"
213
+ integrity sha512-7FEjbrx5SL9cWvXioDbnlYTppcZGuCY6ow3/D5vMggb2Ywgu4dMrpTJX0JdQAIcRRUElOIxF3yEooa9gUb9ZbA==
208
214
  dependencies:
209
- "@babel/types" "^7.12.1"
215
+ "@babel/types" "^7.13.12"
210
216
 
211
217
  "@babel/helper-skip-transparent-expression-wrappers@^7.12.1":
212
218
  version "7.12.1"
@@ -215,48 +221,48 @@
215
221
  dependencies:
216
222
  "@babel/types" "^7.12.1"
217
223
 
218
- "@babel/helper-split-export-declaration@^7.10.4", "@babel/helper-split-export-declaration@^7.11.0", "@babel/helper-split-export-declaration@^7.12.11":
219
- version "7.12.11"
220
- resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.12.11.tgz#1b4cc424458643c47d37022223da33d76ea4603a"
221
- integrity sha512-LsIVN8j48gHgwzfocYUSkO/hjYAOJqlpJEc7tGXcIm4cubjVUf8LGW6eWRyxEu7gA25q02p0rQUWoCI33HNS5g==
224
+ "@babel/helper-split-export-declaration@^7.12.13":
225
+ version "7.12.13"
226
+ resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.12.13.tgz#e9430be00baf3e88b0e13e6f9d4eaf2136372b05"
227
+ integrity sha512-tCJDltF83htUtXx5NLcaDqRmknv652ZWCHyoTETf1CXYJdPC7nohZohjUgieXhv0hTJdRf2FjDueFehdNucpzg==
222
228
  dependencies:
223
- "@babel/types" "^7.12.11"
229
+ "@babel/types" "^7.12.13"
224
230
 
225
- "@babel/helper-validator-identifier@^7.10.4", "@babel/helper-validator-identifier@^7.12.11":
226
- version "7.12.11"
227
- resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.12.11.tgz#c9a1f021917dcb5ccf0d4e453e399022981fc9ed"
228
- integrity sha512-np/lG3uARFybkoHokJUmf1QfEvRVCPbmQeUQpKow5cQ3xWrV9i3rUHodKDJPQfTVX61qKi+UdYk8kik84n7XOw==
231
+ "@babel/helper-validator-identifier@^7.12.11", "@babel/helper-validator-identifier@^7.14.0":
232
+ version "7.14.0"
233
+ resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.14.0.tgz#d26cad8a47c65286b15df1547319a5d0bcf27288"
234
+ integrity sha512-V3ts7zMSu5lfiwWDVWzRDGIN+lnCEUdaXgtVHJgLb1rGaA6jMrtB9EmE7L18foXJIE8Un/A/h6NJfGQp/e1J4A==
229
235
 
230
- "@babel/helper-validator-option@^7.12.1", "@babel/helper-validator-option@^7.12.11":
231
- version "7.12.11"
232
- resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.12.11.tgz#d66cb8b7a3e7fe4c6962b32020a131ecf0847f4f"
233
- integrity sha512-TBFCyj939mFSdeX7U7DDj32WtzYY7fDcalgq8v3fBZMNOJQNn7nOYzMaUCiPxPYfCup69mtIpqlKgMZLvQ8Xhw==
236
+ "@babel/helper-validator-option@^7.12.17":
237
+ version "7.12.17"
238
+ resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.12.17.tgz#d1fbf012e1a79b7eebbfdc6d270baaf8d9eb9831"
239
+ integrity sha512-TopkMDmLzq8ngChwRlyjR6raKD6gMSae4JdYDB8bByKreQgG0RBTuKe9LRxW3wFtUnjxOPRKBDwEH6Mg5KeDfw==
234
240
 
235
- "@babel/helper-wrap-function@^7.10.4":
236
- version "7.12.3"
237
- resolved "https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.12.3.tgz#3332339fc4d1fbbf1c27d7958c27d34708e990d9"
238
- integrity sha512-Cvb8IuJDln3rs6tzjW3Y8UeelAOdnpB8xtQ4sme2MSZ9wOxrbThporC0y/EtE16VAtoyEfLM404Xr1e0OOp+ow==
241
+ "@babel/helper-wrap-function@^7.13.0":
242
+ version "7.13.0"
243
+ resolved "https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.13.0.tgz#bdb5c66fda8526ec235ab894ad53a1235c79fcc4"
244
+ integrity sha512-1UX9F7K3BS42fI6qd2A4BjKzgGjToscyZTdp1DjknHLCIvpgne6918io+aL5LXFcER/8QWiwpoY902pVEqgTXA==
239
245
  dependencies:
240
- "@babel/helper-function-name" "^7.10.4"
241
- "@babel/template" "^7.10.4"
242
- "@babel/traverse" "^7.10.4"
243
- "@babel/types" "^7.10.4"
246
+ "@babel/helper-function-name" "^7.12.13"
247
+ "@babel/template" "^7.12.13"
248
+ "@babel/traverse" "^7.13.0"
249
+ "@babel/types" "^7.13.0"
244
250
 
245
- "@babel/helpers@^7.12.5":
246
- version "7.12.5"
247
- resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.12.5.tgz#1a1ba4a768d9b58310eda516c449913fe647116e"
248
- integrity sha512-lgKGMQlKqA8meJqKsW6rUnc4MdUk35Ln0ATDqdM1a/UpARODdI4j5Y5lVfUScnSNkJcdCRAaWkspykNoFg9sJA==
251
+ "@babel/helpers@^7.14.0":
252
+ version "7.14.0"
253
+ resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.14.0.tgz#ea9b6be9478a13d6f961dbb5f36bf75e2f3b8f62"
254
+ integrity sha512-+ufuXprtQ1D1iZTO/K9+EBRn+qPWMJjZSw/S0KlFrxCw4tkrzv9grgpDHkY9MeQTjTY8i2sp7Jep8DfU6tN9Mg==
249
255
  dependencies:
250
- "@babel/template" "^7.10.4"
251
- "@babel/traverse" "^7.12.5"
252
- "@babel/types" "^7.12.5"
256
+ "@babel/template" "^7.12.13"
257
+ "@babel/traverse" "^7.14.0"
258
+ "@babel/types" "^7.14.0"
253
259
 
254
- "@babel/highlight@^7.10.4", "@babel/highlight@^7.8.3":
255
- version "7.10.4"
256
- resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.10.4.tgz#7d1bdfd65753538fabe6c38596cdb76d9ac60143"
257
- integrity sha512-i6rgnR/YgPEQzZZnbTHHuZdlE8qyoBNalD6F+q4vAFlcMEcqmkoG+mPqJYJCo63qPf74+Y1UZsl3l6f7/RIkmA==
260
+ "@babel/highlight@^7.12.13", "@babel/highlight@^7.8.3":
261
+ version "7.14.0"
262
+ resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.14.0.tgz#3197e375711ef6bf834e67d0daec88e4f46113cf"
263
+ integrity sha512-YSCOwxvTYEIMSGaBQb5kDDsCopDdiUGsqpatp3fOlI4+2HQSkTmEVWnVuySdAC5EWCqSWWTv0ib63RjR7dTBdg==
258
264
  dependencies:
259
- "@babel/helper-validator-identifier" "^7.10.4"
265
+ "@babel/helper-validator-identifier" "^7.14.0"
260
266
  chalk "^2.0.0"
261
267
  js-tokens "^4.0.0"
262
268
 
@@ -265,133 +271,170 @@
265
271
  resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.9.4.tgz#68a35e6b0319bbc014465be43828300113f2f2e8"
266
272
  integrity sha512-bC49otXX6N0/VYhgOMh4gnP26E9xnDZK3TmbNpxYzzz9BQLBosQwfyOe9/cXUU3txYhTzLCbcqd5c8y/OmCjHA==
267
273
 
268
- "@babel/parser@^7.12.10", "@babel/parser@^7.12.11", "@babel/parser@^7.12.7":
269
- version "7.12.11"
270
- resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.12.11.tgz#9ce3595bcd74bc5c466905e86c535b8b25011e79"
271
- integrity sha512-N3UxG+uuF4CMYoNj8AhnbAcJF0PiuJ9KHuy1lQmkYsxTer/MAH9UBNHsBoAX/4s6NvlDD047No8mYVGGzLL4hg==
274
+ "@babel/parser@^7.12.13", "@babel/parser@^7.14.2", "@babel/parser@^7.14.3":
275
+ version "7.14.3"
276
+ resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.14.3.tgz#9b530eecb071fd0c93519df25c5ff9f14759f298"
277
+ integrity sha512-7MpZDIfI7sUC5zWo2+foJ50CSI5lcqDehZ0lVgIhSi4bFEk94fLAKlF3Q0nzSQQ+ca0lm+O6G9ztKVBeu8PMRQ==
272
278
 
273
- "@babel/plugin-proposal-async-generator-functions@^7.12.1":
274
- version "7.12.12"
275
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.12.12.tgz#04b8f24fd4532008ab4e79f788468fd5a8476566"
276
- integrity sha512-nrz9y0a4xmUrRq51bYkWJIO5SBZyG2ys2qinHsN0zHDHVsUaModrkpyWWWXfGqYQmOL3x9sQIcTNN/pBGpo09A==
279
+ "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@^7.13.12":
280
+ version "7.13.12"
281
+ resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.13.12.tgz#a3484d84d0b549f3fc916b99ee4783f26fabad2a"
282
+ integrity sha512-d0u3zWKcoZf379fOeJdr1a5WPDny4aOFZ6hlfKivgK0LY7ZxNfoaHL2fWwdGtHyVvra38FC+HVYkO+byfSA8AQ==
277
283
  dependencies:
278
- "@babel/helper-plugin-utils" "^7.10.4"
279
- "@babel/helper-remap-async-to-generator" "^7.12.1"
280
- "@babel/plugin-syntax-async-generators" "^7.8.0"
284
+ "@babel/helper-plugin-utils" "^7.13.0"
285
+ "@babel/helper-skip-transparent-expression-wrappers" "^7.12.1"
286
+ "@babel/plugin-proposal-optional-chaining" "^7.13.12"
281
287
 
282
- "@babel/plugin-proposal-class-properties@^7.12.1":
283
- version "7.12.1"
284
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.12.1.tgz#a082ff541f2a29a4821065b8add9346c0c16e5de"
285
- integrity sha512-cKp3dlQsFsEs5CWKnN7BnSHOd0EOW8EKpEjkoz1pO2E5KzIDNV9Ros1b0CnmbVgAGXJubOYVBOGCT1OmJwOI7w==
288
+ "@babel/plugin-proposal-async-generator-functions@^7.14.2":
289
+ version "7.14.2"
290
+ resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.14.2.tgz#3a2085abbf5d5f962d480dbc81347385ed62eb1e"
291
+ integrity sha512-b1AM4F6fwck4N8ItZ/AtC4FP/cqZqmKRQ4FaTDutwSYyjuhtvsGEMLK4N/ztV/ImP40BjIDyMgBQAeAMsQYVFQ==
286
292
  dependencies:
287
- "@babel/helper-create-class-features-plugin" "^7.12.1"
288
- "@babel/helper-plugin-utils" "^7.10.4"
293
+ "@babel/helper-plugin-utils" "^7.13.0"
294
+ "@babel/helper-remap-async-to-generator" "^7.13.0"
295
+ "@babel/plugin-syntax-async-generators" "^7.8.4"
289
296
 
290
- "@babel/plugin-proposal-dynamic-import@^7.12.1":
291
- version "7.12.1"
292
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.12.1.tgz#43eb5c2a3487ecd98c5c8ea8b5fdb69a2749b2dc"
293
- integrity sha512-a4rhUSZFuq5W8/OO8H7BL5zspjnc1FLd9hlOxIK/f7qG4a0qsqk8uvF/ywgBA8/OmjsapjpvaEOYItfGG1qIvQ==
297
+ "@babel/plugin-proposal-class-properties@^7.13.0":
298
+ version "7.13.0"
299
+ resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.13.0.tgz#146376000b94efd001e57a40a88a525afaab9f37"
300
+ integrity sha512-KnTDjFNC1g+45ka0myZNvSBFLhNCLN+GeGYLDEA8Oq7MZ6yMgfLoIRh86GRT0FjtJhZw8JyUskP9uvj5pHM9Zg==
294
301
  dependencies:
295
- "@babel/helper-plugin-utils" "^7.10.4"
296
- "@babel/plugin-syntax-dynamic-import" "^7.8.0"
302
+ "@babel/helper-create-class-features-plugin" "^7.13.0"
303
+ "@babel/helper-plugin-utils" "^7.13.0"
297
304
 
298
- "@babel/plugin-proposal-export-namespace-from@^7.12.1":
299
- version "7.12.1"
300
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.12.1.tgz#8b9b8f376b2d88f5dd774e4d24a5cc2e3679b6d4"
301
- integrity sha512-6CThGf0irEkzujYS5LQcjBx8j/4aQGiVv7J9+2f7pGfxqyKh3WnmVJYW3hdrQjyksErMGBPQrCnHfOtna+WLbw==
305
+ "@babel/plugin-proposal-class-static-block@^7.13.11":
306
+ version "7.14.3"
307
+ resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-class-static-block/-/plugin-proposal-class-static-block-7.14.3.tgz#5a527e2cae4a4753119c3a3e7f64ecae8ccf1360"
308
+ integrity sha512-HEjzp5q+lWSjAgJtSluFDrGGosmwTgKwCXdDQZvhKsRlwv3YdkUEqxNrrjesJd+B9E9zvr1PVPVBvhYZ9msjvQ==
302
309
  dependencies:
303
- "@babel/helper-plugin-utils" "^7.10.4"
310
+ "@babel/helper-create-class-features-plugin" "^7.14.3"
311
+ "@babel/helper-plugin-utils" "^7.13.0"
312
+ "@babel/plugin-syntax-class-static-block" "^7.12.13"
313
+
314
+ "@babel/plugin-proposal-dynamic-import@^7.14.2":
315
+ version "7.14.2"
316
+ resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.14.2.tgz#01ebabd7c381cff231fa43e302939a9de5be9d9f"
317
+ integrity sha512-oxVQZIWFh91vuNEMKltqNsKLFWkOIyJc95k2Gv9lWVyDfPUQGSSlbDEgWuJUU1afGE9WwlzpucMZ3yDRHIItkA==
318
+ dependencies:
319
+ "@babel/helper-plugin-utils" "^7.13.0"
320
+ "@babel/plugin-syntax-dynamic-import" "^7.8.3"
321
+
322
+ "@babel/plugin-proposal-export-namespace-from@^7.14.2":
323
+ version "7.14.2"
324
+ resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.14.2.tgz#62542f94aa9ce8f6dba79eec698af22112253791"
325
+ integrity sha512-sRxW3z3Zp3pFfLAgVEvzTFutTXax837oOatUIvSG9o5gRj9mKwm3br1Se5f4QalTQs9x4AzlA/HrCWbQIHASUQ==
326
+ dependencies:
327
+ "@babel/helper-plugin-utils" "^7.13.0"
304
328
  "@babel/plugin-syntax-export-namespace-from" "^7.8.3"
305
329
 
306
- "@babel/plugin-proposal-json-strings@^7.12.1":
307
- version "7.12.1"
308
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.12.1.tgz#d45423b517714eedd5621a9dfdc03fa9f4eb241c"
309
- integrity sha512-GoLDUi6U9ZLzlSda2Df++VSqDJg3CG+dR0+iWsv6XRw1rEq+zwt4DirM9yrxW6XWaTpmai1cWJLMfM8qQJf+yw==
330
+ "@babel/plugin-proposal-json-strings@^7.14.2":
331
+ version "7.14.2"
332
+ resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.14.2.tgz#830b4e2426a782e8b2878fbfe2cba85b70cbf98c"
333
+ integrity sha512-w2DtsfXBBJddJacXMBhElGEYqCZQqN99Se1qeYn8DVLB33owlrlLftIbMzn5nz1OITfDVknXF433tBrLEAOEjA==
310
334
  dependencies:
311
- "@babel/helper-plugin-utils" "^7.10.4"
312
- "@babel/plugin-syntax-json-strings" "^7.8.0"
335
+ "@babel/helper-plugin-utils" "^7.13.0"
336
+ "@babel/plugin-syntax-json-strings" "^7.8.3"
313
337
 
314
- "@babel/plugin-proposal-logical-assignment-operators@^7.12.1":
315
- version "7.12.1"
316
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.12.1.tgz#f2c490d36e1b3c9659241034a5d2cd50263a2751"
317
- integrity sha512-k8ZmVv0JU+4gcUGeCDZOGd0lCIamU/sMtIiX3UWnUc5yzgq6YUGyEolNYD+MLYKfSzgECPcqetVcJP9Afe/aCA==
338
+ "@babel/plugin-proposal-logical-assignment-operators@^7.14.2":
339
+ version "7.14.2"
340
+ resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.14.2.tgz#222348c080a1678e0e74ea63fe76f275882d1fd7"
341
+ integrity sha512-1JAZtUrqYyGsS7IDmFeaem+/LJqujfLZ2weLR9ugB0ufUPjzf8cguyVT1g5im7f7RXxuLq1xUxEzvm68uYRtGg==
318
342
  dependencies:
319
- "@babel/helper-plugin-utils" "^7.10.4"
343
+ "@babel/helper-plugin-utils" "^7.13.0"
320
344
  "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4"
321
345
 
322
- "@babel/plugin-proposal-nullish-coalescing-operator@^7.12.1":
323
- version "7.12.1"
324
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.12.1.tgz#3ed4fff31c015e7f3f1467f190dbe545cd7b046c"
325
- integrity sha512-nZY0ESiaQDI1y96+jk6VxMOaL4LPo/QDHBqL+SF3/vl6dHkTwHlOI8L4ZwuRBHgakRBw5zsVylel7QPbbGuYgg==
346
+ "@babel/plugin-proposal-nullish-coalescing-operator@^7.14.2":
347
+ version "7.14.2"
348
+ resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.14.2.tgz#425b11dc62fc26939a2ab42cbba680bdf5734546"
349
+ integrity sha512-ebR0zU9OvI2N4qiAC38KIAK75KItpIPTpAtd2r4OZmMFeKbKJpUFLYP2EuDut82+BmYi8sz42B+TfTptJ9iG5Q==
326
350
  dependencies:
327
- "@babel/helper-plugin-utils" "^7.10.4"
328
- "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.0"
351
+ "@babel/helper-plugin-utils" "^7.13.0"
352
+ "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3"
329
353
 
330
- "@babel/plugin-proposal-numeric-separator@^7.12.7":
331
- version "7.12.7"
332
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.12.7.tgz#8bf253de8139099fea193b297d23a9d406ef056b"
333
- integrity sha512-8c+uy0qmnRTeukiGsjLGy6uVs/TFjJchGXUeBqlG4VWYOdJWkhhVPdQ3uHwbmalfJwv2JsV0qffXP4asRfL2SQ==
354
+ "@babel/plugin-proposal-numeric-separator@^7.14.2":
355
+ version "7.14.2"
356
+ resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.14.2.tgz#82b4cc06571143faf50626104b335dd71baa4f9e"
357
+ integrity sha512-DcTQY9syxu9BpU3Uo94fjCB3LN9/hgPS8oUL7KrSW3bA2ePrKZZPJcc5y0hoJAM9dft3pGfErtEUvxXQcfLxUg==
334
358
  dependencies:
335
- "@babel/helper-plugin-utils" "^7.10.4"
359
+ "@babel/helper-plugin-utils" "^7.13.0"
336
360
  "@babel/plugin-syntax-numeric-separator" "^7.10.4"
337
361
 
338
- "@babel/plugin-proposal-object-rest-spread@^7.12.1":
339
- version "7.12.1"
340
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.12.1.tgz#def9bd03cea0f9b72283dac0ec22d289c7691069"
341
- integrity sha512-s6SowJIjzlhx8o7lsFx5zmY4At6CTtDvgNQDdPzkBQucle58A6b/TTeEBYtyDgmcXjUTM+vE8YOGHZzzbc/ioA==
362
+ "@babel/plugin-proposal-object-rest-spread@^7.14.2":
363
+ version "7.14.2"
364
+ resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.14.2.tgz#e17d418f81cc103fedd4ce037e181c8056225abc"
365
+ integrity sha512-hBIQFxwZi8GIp934+nj5uV31mqclC1aYDhctDu5khTi9PCCUOczyy0b34W0oE9U/eJXiqQaKyVsmjeagOaSlbw==
342
366
  dependencies:
343
- "@babel/helper-plugin-utils" "^7.10.4"
344
- "@babel/plugin-syntax-object-rest-spread" "^7.8.0"
345
- "@babel/plugin-transform-parameters" "^7.12.1"
367
+ "@babel/compat-data" "^7.14.0"
368
+ "@babel/helper-compilation-targets" "^7.13.16"
369
+ "@babel/helper-plugin-utils" "^7.13.0"
370
+ "@babel/plugin-syntax-object-rest-spread" "^7.8.3"
371
+ "@babel/plugin-transform-parameters" "^7.14.2"
346
372
 
347
- "@babel/plugin-proposal-optional-catch-binding@^7.12.1":
348
- version "7.12.1"
349
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.12.1.tgz#ccc2421af64d3aae50b558a71cede929a5ab2942"
350
- integrity sha512-hFvIjgprh9mMw5v42sJWLI1lzU5L2sznP805zeT6rySVRA0Y18StRhDqhSxlap0oVgItRsB6WSROp4YnJTJz0g==
373
+ "@babel/plugin-proposal-optional-catch-binding@^7.14.2":
374
+ version "7.14.2"
375
+ resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.14.2.tgz#150d4e58e525b16a9a1431bd5326c4eed870d717"
376
+ integrity sha512-XtkJsmJtBaUbOxZsNk0Fvrv8eiqgneug0A6aqLFZ4TSkar2L5dSXWcnUKHgmjJt49pyB/6ZHvkr3dPgl9MOWRQ==
351
377
  dependencies:
352
- "@babel/helper-plugin-utils" "^7.10.4"
353
- "@babel/plugin-syntax-optional-catch-binding" "^7.8.0"
378
+ "@babel/helper-plugin-utils" "^7.13.0"
379
+ "@babel/plugin-syntax-optional-catch-binding" "^7.8.3"
354
380
 
355
- "@babel/plugin-proposal-optional-chaining@^7.12.7":
356
- version "7.12.7"
357
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.12.7.tgz#e02f0ea1b5dc59d401ec16fb824679f683d3303c"
358
- integrity sha512-4ovylXZ0PWmwoOvhU2vhnzVNnm88/Sm9nx7V8BPgMvAzn5zDou3/Awy0EjglyubVHasJj+XCEkr/r1X3P5elCA==
381
+ "@babel/plugin-proposal-optional-chaining@^7.13.12", "@babel/plugin-proposal-optional-chaining@^7.14.2":
382
+ version "7.14.2"
383
+ resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.14.2.tgz#df8171a8b9c43ebf4c1dabe6311b432d83e1b34e"
384
+ integrity sha512-qQByMRPwMZJainfig10BoaDldx/+VDtNcrA7qdNaEOAj6VXud+gfrkA8j4CRAU5HjnWREXqIpSpH30qZX1xivA==
359
385
  dependencies:
360
- "@babel/helper-plugin-utils" "^7.10.4"
386
+ "@babel/helper-plugin-utils" "^7.13.0"
361
387
  "@babel/helper-skip-transparent-expression-wrappers" "^7.12.1"
362
- "@babel/plugin-syntax-optional-chaining" "^7.8.0"
388
+ "@babel/plugin-syntax-optional-chaining" "^7.8.3"
363
389
 
364
- "@babel/plugin-proposal-private-methods@^7.12.1":
365
- version "7.12.1"
366
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.12.1.tgz#86814f6e7a21374c980c10d38b4493e703f4a389"
367
- integrity sha512-mwZ1phvH7/NHK6Kf8LP7MYDogGV+DKB1mryFOEwx5EBNQrosvIczzZFTUmWaeujd5xT6G1ELYWUz3CutMhjE1w==
390
+ "@babel/plugin-proposal-private-methods@^7.13.0":
391
+ version "7.13.0"
392
+ resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.13.0.tgz#04bd4c6d40f6e6bbfa2f57e2d8094bad900ef787"
393
+ integrity sha512-MXyyKQd9inhx1kDYPkFRVOBXQ20ES8Pto3T7UZ92xj2mY0EVD8oAVzeyYuVfy/mxAdTSIayOvg+aVzcHV2bn6Q==
368
394
  dependencies:
369
- "@babel/helper-create-class-features-plugin" "^7.12.1"
370
- "@babel/helper-plugin-utils" "^7.10.4"
395
+ "@babel/helper-create-class-features-plugin" "^7.13.0"
396
+ "@babel/helper-plugin-utils" "^7.13.0"
371
397
 
372
- "@babel/plugin-proposal-unicode-property-regex@^7.12.1", "@babel/plugin-proposal-unicode-property-regex@^7.4.4":
373
- version "7.12.1"
374
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.12.1.tgz#2a183958d417765b9eae334f47758e5d6a82e072"
375
- integrity sha512-MYq+l+PvHuw/rKUz1at/vb6nCnQ2gmJBNaM62z0OgH7B2W1D9pvkpYtlti9bGtizNIU1K3zm4bZF9F91efVY0w==
398
+ "@babel/plugin-proposal-private-property-in-object@^7.14.0":
399
+ version "7.14.0"
400
+ resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.14.0.tgz#b1a1f2030586b9d3489cc26179d2eb5883277636"
401
+ integrity sha512-59ANdmEwwRUkLjB7CRtwJxxwtjESw+X2IePItA+RGQh+oy5RmpCh/EvVVvh5XQc3yxsm5gtv0+i9oBZhaDNVTg==
376
402
  dependencies:
377
- "@babel/helper-create-regexp-features-plugin" "^7.12.1"
378
- "@babel/helper-plugin-utils" "^7.10.4"
403
+ "@babel/helper-annotate-as-pure" "^7.12.13"
404
+ "@babel/helper-create-class-features-plugin" "^7.14.0"
405
+ "@babel/helper-plugin-utils" "^7.13.0"
406
+ "@babel/plugin-syntax-private-property-in-object" "^7.14.0"
407
+
408
+ "@babel/plugin-proposal-unicode-property-regex@^7.12.13", "@babel/plugin-proposal-unicode-property-regex@^7.4.4":
409
+ version "7.12.13"
410
+ resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.12.13.tgz#bebde51339be829c17aaaaced18641deb62b39ba"
411
+ integrity sha512-XyJmZidNfofEkqFV5VC/bLabGmO5QzenPO/YOfGuEbgU+2sSwMmio3YLb4WtBgcmmdwZHyVyv8on77IUjQ5Gvg==
412
+ dependencies:
413
+ "@babel/helper-create-regexp-features-plugin" "^7.12.13"
414
+ "@babel/helper-plugin-utils" "^7.12.13"
379
415
 
380
- "@babel/plugin-syntax-async-generators@^7.8.0":
416
+ "@babel/plugin-syntax-async-generators@^7.8.4":
381
417
  version "7.8.4"
382
418
  resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz#a983fb1aeb2ec3f6ed042a210f640e90e786fe0d"
383
419
  integrity sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==
384
420
  dependencies:
385
421
  "@babel/helper-plugin-utils" "^7.8.0"
386
422
 
387
- "@babel/plugin-syntax-class-properties@^7.12.1":
388
- version "7.12.1"
389
- resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.1.tgz#bcb297c5366e79bebadef509549cd93b04f19978"
390
- integrity sha512-U40A76x5gTwmESz+qiqssqmeEsKvcSyvtgktrm0uzcARAmM9I1jR221f6Oq+GmHrcD+LvZDag1UTOTe2fL3TeA==
423
+ "@babel/plugin-syntax-class-properties@^7.12.13":
424
+ version "7.12.13"
425
+ resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz#b5c987274c4a3a82b89714796931a6b53544ae10"
426
+ integrity sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==
391
427
  dependencies:
392
- "@babel/helper-plugin-utils" "^7.10.4"
428
+ "@babel/helper-plugin-utils" "^7.12.13"
393
429
 
394
- "@babel/plugin-syntax-dynamic-import@^7.8.0":
430
+ "@babel/plugin-syntax-class-static-block@^7.12.13":
431
+ version "7.12.13"
432
+ resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.12.13.tgz#8e3d674b0613e67975ceac2776c97b60cafc5c9c"
433
+ integrity sha512-ZmKQ0ZXR0nYpHZIIuj9zE7oIqCx2hw9TKi+lIo73NNrMPAZGHfS92/VRV0ZmPj6H2ffBgyFHXvJ5NYsNeEaP2A==
434
+ dependencies:
435
+ "@babel/helper-plugin-utils" "^7.12.13"
436
+
437
+ "@babel/plugin-syntax-dynamic-import@^7.8.3":
395
438
  version "7.8.3"
396
439
  resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz#62bf98b2da3cd21d626154fc96ee5b3cb68eacb3"
397
440
  integrity sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==
@@ -405,7 +448,7 @@
405
448
  dependencies:
406
449
  "@babel/helper-plugin-utils" "^7.8.3"
407
450
 
408
- "@babel/plugin-syntax-json-strings@^7.8.0":
451
+ "@babel/plugin-syntax-json-strings@^7.8.3":
409
452
  version "7.8.3"
410
453
  resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz#01ca21b668cd8218c9e640cb6dd88c5412b2c96a"
411
454
  integrity sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==
@@ -419,7 +462,7 @@
419
462
  dependencies:
420
463
  "@babel/helper-plugin-utils" "^7.10.4"
421
464
 
422
- "@babel/plugin-syntax-nullish-coalescing-operator@^7.8.0":
465
+ "@babel/plugin-syntax-nullish-coalescing-operator@^7.8.3":
423
466
  version "7.8.3"
424
467
  resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz#167ed70368886081f74b5c36c65a88c03b66d1a9"
425
468
  integrity sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==
@@ -433,356 +476,369 @@
433
476
  dependencies:
434
477
  "@babel/helper-plugin-utils" "^7.10.4"
435
478
 
436
- "@babel/plugin-syntax-object-rest-spread@^7.8.0":
479
+ "@babel/plugin-syntax-object-rest-spread@^7.8.3":
437
480
  version "7.8.3"
438
481
  resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz#60e225edcbd98a640332a2e72dd3e66f1af55871"
439
482
  integrity sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==
440
483
  dependencies:
441
484
  "@babel/helper-plugin-utils" "^7.8.0"
442
485
 
443
- "@babel/plugin-syntax-optional-catch-binding@^7.8.0":
486
+ "@babel/plugin-syntax-optional-catch-binding@^7.8.3":
444
487
  version "7.8.3"
445
488
  resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz#6111a265bcfb020eb9efd0fdfd7d26402b9ed6c1"
446
489
  integrity sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==
447
490
  dependencies:
448
491
  "@babel/helper-plugin-utils" "^7.8.0"
449
492
 
450
- "@babel/plugin-syntax-optional-chaining@^7.8.0":
493
+ "@babel/plugin-syntax-optional-chaining@^7.8.3":
451
494
  version "7.8.3"
452
495
  resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz#4f69c2ab95167e0180cd5336613f8c5788f7d48a"
453
496
  integrity sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==
454
497
  dependencies:
455
498
  "@babel/helper-plugin-utils" "^7.8.0"
456
499
 
457
- "@babel/plugin-syntax-top-level-await@^7.12.1":
458
- version "7.12.1"
459
- resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.12.1.tgz#dd6c0b357ac1bb142d98537450a319625d13d2a0"
460
- integrity sha512-i7ooMZFS+a/Om0crxZodrTzNEPJHZrlMVGMTEpFAj6rYY/bKCddB0Dk/YxfPuYXOopuhKk/e1jV6h+WUU9XN3A==
500
+ "@babel/plugin-syntax-private-property-in-object@^7.14.0":
501
+ version "7.14.0"
502
+ resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.0.tgz#762a4babec61176fec6c88480dec40372b140c0b"
503
+ integrity sha512-bda3xF8wGl5/5btF794utNOL0Jw+9jE5C1sLZcoK7c4uonE/y3iQiyG+KbkF3WBV/paX58VCpjhxLPkdj5Fe4w==
461
504
  dependencies:
462
- "@babel/helper-plugin-utils" "^7.10.4"
505
+ "@babel/helper-plugin-utils" "^7.13.0"
463
506
 
464
- "@babel/plugin-transform-arrow-functions@^7.12.1":
465
- version "7.12.1"
466
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.12.1.tgz#8083ffc86ac8e777fbe24b5967c4b2521f3cb2b3"
467
- integrity sha512-5QB50qyN44fzzz4/qxDPQMBCTHgxg3n0xRBLJUmBlLoU/sFvxVWGZF/ZUfMVDQuJUKXaBhbupxIzIfZ6Fwk/0A==
507
+ "@babel/plugin-syntax-top-level-await@^7.12.13":
508
+ version "7.12.13"
509
+ resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.12.13.tgz#c5f0fa6e249f5b739727f923540cf7a806130178"
510
+ integrity sha512-A81F9pDwyS7yM//KwbCSDqy3Uj4NMIurtplxphWxoYtNPov7cJsDkAFNNyVlIZ3jwGycVsurZ+LtOA8gZ376iQ==
468
511
  dependencies:
469
- "@babel/helper-plugin-utils" "^7.10.4"
512
+ "@babel/helper-plugin-utils" "^7.12.13"
470
513
 
471
- "@babel/plugin-transform-async-to-generator@^7.12.1":
472
- version "7.12.1"
473
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.12.1.tgz#3849a49cc2a22e9743cbd6b52926d30337229af1"
474
- integrity sha512-SDtqoEcarK1DFlRJ1hHRY5HvJUj5kX4qmtpMAm2QnhOlyuMC4TMdCRgW6WXpv93rZeYNeLP22y8Aq2dbcDRM1A==
514
+ "@babel/plugin-transform-arrow-functions@^7.13.0":
515
+ version "7.13.0"
516
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.13.0.tgz#10a59bebad52d637a027afa692e8d5ceff5e3dae"
517
+ integrity sha512-96lgJagobeVmazXFaDrbmCLQxBysKu7U6Do3mLsx27gf5Dk85ezysrs2BZUpXD703U/Su1xTBDxxar2oa4jAGg==
475
518
  dependencies:
476
- "@babel/helper-module-imports" "^7.12.1"
477
- "@babel/helper-plugin-utils" "^7.10.4"
478
- "@babel/helper-remap-async-to-generator" "^7.12.1"
519
+ "@babel/helper-plugin-utils" "^7.13.0"
479
520
 
480
- "@babel/plugin-transform-block-scoped-functions@^7.12.1":
481
- version "7.12.1"
482
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.12.1.tgz#f2a1a365bde2b7112e0a6ded9067fdd7c07905d9"
483
- integrity sha512-5OpxfuYnSgPalRpo8EWGPzIYf0lHBWORCkj5M0oLBwHdlux9Ri36QqGW3/LR13RSVOAoUUMzoPI/jpE4ABcHoA==
521
+ "@babel/plugin-transform-async-to-generator@^7.13.0":
522
+ version "7.13.0"
523
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.13.0.tgz#8e112bf6771b82bf1e974e5e26806c5c99aa516f"
524
+ integrity sha512-3j6E004Dx0K3eGmhxVJxwwI89CTJrce7lg3UrtFuDAVQ/2+SJ/h/aSFOeE6/n0WB1GsOffsJp6MnPQNQ8nmwhg==
484
525
  dependencies:
485
- "@babel/helper-plugin-utils" "^7.10.4"
526
+ "@babel/helper-module-imports" "^7.12.13"
527
+ "@babel/helper-plugin-utils" "^7.13.0"
528
+ "@babel/helper-remap-async-to-generator" "^7.13.0"
486
529
 
487
- "@babel/plugin-transform-block-scoping@^7.12.11":
488
- version "7.12.12"
489
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.12.12.tgz#d93a567a152c22aea3b1929bb118d1d0a175cdca"
490
- integrity sha512-VOEPQ/ExOVqbukuP7BYJtI5ZxxsmegTwzZ04j1aF0dkSypGo9XpDHuOrABsJu+ie+penpSJheDJ11x1BEZNiyQ==
530
+ "@babel/plugin-transform-block-scoped-functions@^7.12.13":
531
+ version "7.12.13"
532
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.12.13.tgz#a9bf1836f2a39b4eb6cf09967739de29ea4bf4c4"
533
+ integrity sha512-zNyFqbc3kI/fVpqwfqkg6RvBgFpC4J18aKKMmv7KdQ/1GgREapSJAykLMVNwfRGO3BtHj3YQZl8kxCXPcVMVeg==
491
534
  dependencies:
492
- "@babel/helper-plugin-utils" "^7.10.4"
535
+ "@babel/helper-plugin-utils" "^7.12.13"
493
536
 
494
- "@babel/plugin-transform-classes@^7.12.1":
495
- version "7.12.1"
496
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.12.1.tgz#65e650fcaddd3d88ddce67c0f834a3d436a32db6"
497
- integrity sha512-/74xkA7bVdzQTBeSUhLLJgYIcxw/dpEpCdRDiHgPJ3Mv6uC11UhjpOhl72CgqbBCmt1qtssCyB2xnJm1+PFjog==
537
+ "@babel/plugin-transform-block-scoping@^7.14.2":
538
+ version "7.14.2"
539
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.14.2.tgz#761cb12ab5a88d640ad4af4aa81f820e6b5fdf5c"
540
+ integrity sha512-neZZcP19NugZZqNwMTH+KoBjx5WyvESPSIOQb4JHpfd+zPfqcH65RMu5xJju5+6q/Y2VzYrleQTr+b6METyyxg==
498
541
  dependencies:
499
- "@babel/helper-annotate-as-pure" "^7.10.4"
500
- "@babel/helper-define-map" "^7.10.4"
501
- "@babel/helper-function-name" "^7.10.4"
502
- "@babel/helper-optimise-call-expression" "^7.10.4"
503
- "@babel/helper-plugin-utils" "^7.10.4"
504
- "@babel/helper-replace-supers" "^7.12.1"
505
- "@babel/helper-split-export-declaration" "^7.10.4"
542
+ "@babel/helper-plugin-utils" "^7.13.0"
543
+
544
+ "@babel/plugin-transform-classes@^7.14.2":
545
+ version "7.14.2"
546
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.14.2.tgz#3f1196c5709f064c252ad056207d87b7aeb2d03d"
547
+ integrity sha512-7oafAVcucHquA/VZCsXv/gmuiHeYd64UJyyTYU+MPfNu0KeNlxw06IeENBO8bJjXVbolu+j1MM5aKQtH1OMCNg==
548
+ dependencies:
549
+ "@babel/helper-annotate-as-pure" "^7.12.13"
550
+ "@babel/helper-function-name" "^7.14.2"
551
+ "@babel/helper-optimise-call-expression" "^7.12.13"
552
+ "@babel/helper-plugin-utils" "^7.13.0"
553
+ "@babel/helper-replace-supers" "^7.13.12"
554
+ "@babel/helper-split-export-declaration" "^7.12.13"
506
555
  globals "^11.1.0"
507
556
 
508
- "@babel/plugin-transform-computed-properties@^7.12.1":
509
- version "7.12.1"
510
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.12.1.tgz#d68cf6c9b7f838a8a4144badbe97541ea0904852"
511
- integrity sha512-vVUOYpPWB7BkgUWPo4C44mUQHpTZXakEqFjbv8rQMg7TC6S6ZhGZ3otQcRH6u7+adSlE5i0sp63eMC/XGffrzg==
557
+ "@babel/plugin-transform-computed-properties@^7.13.0":
558
+ version "7.13.0"
559
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.13.0.tgz#845c6e8b9bb55376b1fa0b92ef0bdc8ea06644ed"
560
+ integrity sha512-RRqTYTeZkZAz8WbieLTvKUEUxZlUTdmL5KGMyZj7FnMfLNKV4+r5549aORG/mgojRmFlQMJDUupwAMiF2Q7OUg==
512
561
  dependencies:
513
- "@babel/helper-plugin-utils" "^7.10.4"
562
+ "@babel/helper-plugin-utils" "^7.13.0"
514
563
 
515
- "@babel/plugin-transform-destructuring@^7.12.1":
516
- version "7.12.1"
517
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.12.1.tgz#b9a570fe0d0a8d460116413cb4f97e8e08b2f847"
518
- integrity sha512-fRMYFKuzi/rSiYb2uRLiUENJOKq4Gnl+6qOv5f8z0TZXg3llUwUhsNNwrwaT/6dUhJTzNpBr+CUvEWBtfNY1cw==
564
+ "@babel/plugin-transform-destructuring@^7.13.17":
565
+ version "7.13.17"
566
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.13.17.tgz#678d96576638c19d5b36b332504d3fd6e06dea27"
567
+ integrity sha512-UAUqiLv+uRLO+xuBKKMEpC+t7YRNVRqBsWWq1yKXbBZBje/t3IXCiSinZhjn/DC3qzBfICeYd2EFGEbHsh5RLA==
519
568
  dependencies:
520
- "@babel/helper-plugin-utils" "^7.10.4"
569
+ "@babel/helper-plugin-utils" "^7.13.0"
521
570
 
522
- "@babel/plugin-transform-dotall-regex@^7.12.1", "@babel/plugin-transform-dotall-regex@^7.4.4":
523
- version "7.12.1"
524
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.12.1.tgz#a1d16c14862817b6409c0a678d6f9373ca9cd975"
525
- integrity sha512-B2pXeRKoLszfEW7J4Hg9LoFaWEbr/kzo3teWHmtFCszjRNa/b40f9mfeqZsIDLLt/FjwQ6pz/Gdlwy85xNckBA==
571
+ "@babel/plugin-transform-dotall-regex@^7.12.13", "@babel/plugin-transform-dotall-regex@^7.4.4":
572
+ version "7.12.13"
573
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.12.13.tgz#3f1601cc29905bfcb67f53910f197aeafebb25ad"
574
+ integrity sha512-foDrozE65ZFdUC2OfgeOCrEPTxdB3yjqxpXh8CH+ipd9CHd4s/iq81kcUpyH8ACGNEPdFqbtzfgzbT/ZGlbDeQ==
526
575
  dependencies:
527
- "@babel/helper-create-regexp-features-plugin" "^7.12.1"
528
- "@babel/helper-plugin-utils" "^7.10.4"
576
+ "@babel/helper-create-regexp-features-plugin" "^7.12.13"
577
+ "@babel/helper-plugin-utils" "^7.12.13"
529
578
 
530
- "@babel/plugin-transform-duplicate-keys@^7.12.1":
531
- version "7.12.1"
532
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.12.1.tgz#745661baba295ac06e686822797a69fbaa2ca228"
533
- integrity sha512-iRght0T0HztAb/CazveUpUQrZY+aGKKaWXMJ4uf9YJtqxSUe09j3wteztCUDRHs+SRAL7yMuFqUsLoAKKzgXjw==
579
+ "@babel/plugin-transform-duplicate-keys@^7.12.13":
580
+ version "7.12.13"
581
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.12.13.tgz#6f06b87a8b803fd928e54b81c258f0a0033904de"
582
+ integrity sha512-NfADJiiHdhLBW3pulJlJI2NB0t4cci4WTZ8FtdIuNc2+8pslXdPtRRAEWqUY+m9kNOk2eRYbTAOipAxlrOcwwQ==
534
583
  dependencies:
535
- "@babel/helper-plugin-utils" "^7.10.4"
584
+ "@babel/helper-plugin-utils" "^7.12.13"
536
585
 
537
- "@babel/plugin-transform-exponentiation-operator@^7.12.1":
538
- version "7.12.1"
539
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.12.1.tgz#b0f2ed356ba1be1428ecaf128ff8a24f02830ae0"
540
- integrity sha512-7tqwy2bv48q+c1EHbXK0Zx3KXd2RVQp6OC7PbwFNt/dPTAV3Lu5sWtWuAj8owr5wqtWnqHfl2/mJlUmqkChKug==
586
+ "@babel/plugin-transform-exponentiation-operator@^7.12.13":
587
+ version "7.12.13"
588
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.12.13.tgz#4d52390b9a273e651e4aba6aee49ef40e80cd0a1"
589
+ integrity sha512-fbUelkM1apvqez/yYx1/oICVnGo2KM5s63mhGylrmXUxK/IAXSIf87QIxVfZldWf4QsOafY6vV3bX8aMHSvNrA==
541
590
  dependencies:
542
- "@babel/helper-builder-binary-assignment-operator-visitor" "^7.10.4"
543
- "@babel/helper-plugin-utils" "^7.10.4"
591
+ "@babel/helper-builder-binary-assignment-operator-visitor" "^7.12.13"
592
+ "@babel/helper-plugin-utils" "^7.12.13"
544
593
 
545
- "@babel/plugin-transform-for-of@^7.12.1":
546
- version "7.12.1"
547
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.12.1.tgz#07640f28867ed16f9511c99c888291f560921cfa"
548
- integrity sha512-Zaeq10naAsuHo7heQvyV0ptj4dlZJwZgNAtBYBnu5nNKJoW62m0zKcIEyVECrUKErkUkg6ajMy4ZfnVZciSBhg==
594
+ "@babel/plugin-transform-for-of@^7.13.0":
595
+ version "7.13.0"
596
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.13.0.tgz#c799f881a8091ac26b54867a845c3e97d2696062"
597
+ integrity sha512-IHKT00mwUVYE0zzbkDgNRP6SRzvfGCYsOxIRz8KsiaaHCcT9BWIkO+H9QRJseHBLOGBZkHUdHiqj6r0POsdytg==
549
598
  dependencies:
550
- "@babel/helper-plugin-utils" "^7.10.4"
599
+ "@babel/helper-plugin-utils" "^7.13.0"
551
600
 
552
- "@babel/plugin-transform-function-name@^7.12.1":
553
- version "7.12.1"
554
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.12.1.tgz#2ec76258c70fe08c6d7da154003a480620eba667"
555
- integrity sha512-JF3UgJUILoFrFMEnOJLJkRHSk6LUSXLmEFsA23aR2O5CSLUxbeUX1IZ1YQ7Sn0aXb601Ncwjx73a+FVqgcljVw==
601
+ "@babel/plugin-transform-function-name@^7.12.13":
602
+ version "7.12.13"
603
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.12.13.tgz#bb024452f9aaed861d374c8e7a24252ce3a50051"
604
+ integrity sha512-6K7gZycG0cmIwwF7uMK/ZqeCikCGVBdyP2J5SKNCXO5EOHcqi+z7Jwf8AmyDNcBgxET8DrEtCt/mPKPyAzXyqQ==
556
605
  dependencies:
557
- "@babel/helper-function-name" "^7.10.4"
558
- "@babel/helper-plugin-utils" "^7.10.4"
606
+ "@babel/helper-function-name" "^7.12.13"
607
+ "@babel/helper-plugin-utils" "^7.12.13"
559
608
 
560
- "@babel/plugin-transform-literals@^7.12.1":
561
- version "7.12.1"
562
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.12.1.tgz#d73b803a26b37017ddf9d3bb8f4dc58bfb806f57"
563
- integrity sha512-+PxVGA+2Ag6uGgL0A5f+9rklOnnMccwEBzwYFL3EUaKuiyVnUipyXncFcfjSkbimLrODoqki1U9XxZzTvfN7IQ==
609
+ "@babel/plugin-transform-literals@^7.12.13":
610
+ version "7.12.13"
611
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.12.13.tgz#2ca45bafe4a820197cf315794a4d26560fe4bdb9"
612
+ integrity sha512-FW+WPjSR7hiUxMcKqyNjP05tQ2kmBCdpEpZHY1ARm96tGQCCBvXKnpjILtDplUnJ/eHZ0lALLM+d2lMFSpYJrQ==
564
613
  dependencies:
565
- "@babel/helper-plugin-utils" "^7.10.4"
614
+ "@babel/helper-plugin-utils" "^7.12.13"
566
615
 
567
- "@babel/plugin-transform-member-expression-literals@^7.12.1":
568
- version "7.12.1"
569
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.12.1.tgz#496038602daf1514a64d43d8e17cbb2755e0c3ad"
570
- integrity sha512-1sxePl6z9ad0gFMB9KqmYofk34flq62aqMt9NqliS/7hPEpURUCMbyHXrMPlo282iY7nAvUB1aQd5mg79UD9Jg==
616
+ "@babel/plugin-transform-member-expression-literals@^7.12.13":
617
+ version "7.12.13"
618
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.12.13.tgz#5ffa66cd59b9e191314c9f1f803b938e8c081e40"
619
+ integrity sha512-kxLkOsg8yir4YeEPHLuO2tXP9R/gTjpuTOjshqSpELUN3ZAg2jfDnKUvzzJxObun38sw3wm4Uu69sX/zA7iRvg==
571
620
  dependencies:
572
- "@babel/helper-plugin-utils" "^7.10.4"
621
+ "@babel/helper-plugin-utils" "^7.12.13"
573
622
 
574
- "@babel/plugin-transform-modules-amd@^7.12.1":
575
- version "7.12.1"
576
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.12.1.tgz#3154300b026185666eebb0c0ed7f8415fefcf6f9"
577
- integrity sha512-tDW8hMkzad5oDtzsB70HIQQRBiTKrhfgwC/KkJeGsaNFTdWhKNt/BiE8c5yj19XiGyrxpbkOfH87qkNg1YGlOQ==
623
+ "@babel/plugin-transform-modules-amd@^7.14.2":
624
+ version "7.14.2"
625
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.14.2.tgz#6622806fe1a7c07a1388444222ef9535f2ca17b0"
626
+ integrity sha512-hPC6XBswt8P3G2D1tSV2HzdKvkqOpmbyoy+g73JG0qlF/qx2y3KaMmXb1fLrpmWGLZYA0ojCvaHdzFWjlmV+Pw==
578
627
  dependencies:
579
- "@babel/helper-module-transforms" "^7.12.1"
580
- "@babel/helper-plugin-utils" "^7.10.4"
628
+ "@babel/helper-module-transforms" "^7.14.2"
629
+ "@babel/helper-plugin-utils" "^7.13.0"
581
630
  babel-plugin-dynamic-import-node "^2.3.3"
582
631
 
583
- "@babel/plugin-transform-modules-commonjs@^7.12.1":
584
- version "7.12.1"
585
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.12.1.tgz#fa403124542636c786cf9b460a0ffbb48a86e648"
586
- integrity sha512-dY789wq6l0uLY8py9c1B48V8mVL5gZh/+PQ5ZPrylPYsnAvnEMjqsUXkuoDVPeVK+0VyGar+D08107LzDQ6pag==
632
+ "@babel/plugin-transform-modules-commonjs@^7.14.0":
633
+ version "7.14.0"
634
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.14.0.tgz#52bc199cb581e0992edba0f0f80356467587f161"
635
+ integrity sha512-EX4QePlsTaRZQmw9BsoPeyh5OCtRGIhwfLquhxGp5e32w+dyL8htOcDwamlitmNFK6xBZYlygjdye9dbd9rUlQ==
587
636
  dependencies:
588
- "@babel/helper-module-transforms" "^7.12.1"
589
- "@babel/helper-plugin-utils" "^7.10.4"
590
- "@babel/helper-simple-access" "^7.12.1"
637
+ "@babel/helper-module-transforms" "^7.14.0"
638
+ "@babel/helper-plugin-utils" "^7.13.0"
639
+ "@babel/helper-simple-access" "^7.13.12"
591
640
  babel-plugin-dynamic-import-node "^2.3.3"
592
641
 
593
- "@babel/plugin-transform-modules-systemjs@^7.12.1":
594
- version "7.12.1"
595
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.12.1.tgz#663fea620d593c93f214a464cd399bf6dc683086"
596
- integrity sha512-Hn7cVvOavVh8yvW6fLwveFqSnd7rbQN3zJvoPNyNaQSvgfKmDBO9U1YL9+PCXGRlZD9tNdWTy5ACKqMuzyn32Q==
642
+ "@babel/plugin-transform-modules-systemjs@^7.13.8":
643
+ version "7.13.8"
644
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.13.8.tgz#6d066ee2bff3c7b3d60bf28dec169ad993831ae3"
645
+ integrity sha512-hwqctPYjhM6cWvVIlOIe27jCIBgHCsdH2xCJVAYQm7V5yTMoilbVMi9f6wKg0rpQAOn6ZG4AOyvCqFF/hUh6+A==
597
646
  dependencies:
598
- "@babel/helper-hoist-variables" "^7.10.4"
599
- "@babel/helper-module-transforms" "^7.12.1"
600
- "@babel/helper-plugin-utils" "^7.10.4"
601
- "@babel/helper-validator-identifier" "^7.10.4"
647
+ "@babel/helper-hoist-variables" "^7.13.0"
648
+ "@babel/helper-module-transforms" "^7.13.0"
649
+ "@babel/helper-plugin-utils" "^7.13.0"
650
+ "@babel/helper-validator-identifier" "^7.12.11"
602
651
  babel-plugin-dynamic-import-node "^2.3.3"
603
652
 
604
- "@babel/plugin-transform-modules-umd@^7.12.1":
605
- version "7.12.1"
606
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.12.1.tgz#eb5a218d6b1c68f3d6217b8fa2cc82fec6547902"
607
- integrity sha512-aEIubCS0KHKM0zUos5fIoQm+AZUMt1ZvMpqz0/H5qAQ7vWylr9+PLYurT+Ic7ID/bKLd4q8hDovaG3Zch2uz5Q==
653
+ "@babel/plugin-transform-modules-umd@^7.14.0":
654
+ version "7.14.0"
655
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.14.0.tgz#2f8179d1bbc9263665ce4a65f305526b2ea8ac34"
656
+ integrity sha512-nPZdnWtXXeY7I87UZr9VlsWme3Y0cfFFE41Wbxz4bbaexAjNMInXPFUpRRUJ8NoMm0Cw+zxbqjdPmLhcjfazMw==
608
657
  dependencies:
609
- "@babel/helper-module-transforms" "^7.12.1"
610
- "@babel/helper-plugin-utils" "^7.10.4"
658
+ "@babel/helper-module-transforms" "^7.14.0"
659
+ "@babel/helper-plugin-utils" "^7.13.0"
611
660
 
612
- "@babel/plugin-transform-named-capturing-groups-regex@^7.12.1":
613
- version "7.12.1"
614
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.12.1.tgz#b407f5c96be0d9f5f88467497fa82b30ac3e8753"
615
- integrity sha512-tB43uQ62RHcoDp9v2Nsf+dSM8sbNodbEicbQNA53zHz8pWUhsgHSJCGpt7daXxRydjb0KnfmB+ChXOv3oADp1Q==
661
+ "@babel/plugin-transform-named-capturing-groups-regex@^7.12.13":
662
+ version "7.12.13"
663
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.12.13.tgz#2213725a5f5bbbe364b50c3ba5998c9599c5c9d9"
664
+ integrity sha512-Xsm8P2hr5hAxyYblrfACXpQKdQbx4m2df9/ZZSQ8MAhsadw06+jW7s9zsSw6he+mJZXRlVMyEnVktJo4zjk1WA==
616
665
  dependencies:
617
- "@babel/helper-create-regexp-features-plugin" "^7.12.1"
666
+ "@babel/helper-create-regexp-features-plugin" "^7.12.13"
618
667
 
619
- "@babel/plugin-transform-new-target@^7.12.1":
620
- version "7.12.1"
621
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.12.1.tgz#80073f02ee1bb2d365c3416490e085c95759dec0"
622
- integrity sha512-+eW/VLcUL5L9IvJH7rT1sT0CzkdUTvPrXC2PXTn/7z7tXLBuKvezYbGdxD5WMRoyvyaujOq2fWoKl869heKjhw==
668
+ "@babel/plugin-transform-new-target@^7.12.13":
669
+ version "7.12.13"
670
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.12.13.tgz#e22d8c3af24b150dd528cbd6e685e799bf1c351c"
671
+ integrity sha512-/KY2hbLxrG5GTQ9zzZSc3xWiOy379pIETEhbtzwZcw9rvuaVV4Fqy7BYGYOWZnaoXIQYbbJ0ziXLa/sKcGCYEQ==
623
672
  dependencies:
624
- "@babel/helper-plugin-utils" "^7.10.4"
673
+ "@babel/helper-plugin-utils" "^7.12.13"
625
674
 
626
- "@babel/plugin-transform-object-super@^7.12.1":
627
- version "7.12.1"
628
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.12.1.tgz#4ea08696b8d2e65841d0c7706482b048bed1066e"
629
- integrity sha512-AvypiGJH9hsquNUn+RXVcBdeE3KHPZexWRdimhuV59cSoOt5kFBmqlByorAeUlGG2CJWd0U+4ZtNKga/TB0cAw==
675
+ "@babel/plugin-transform-object-super@^7.12.13":
676
+ version "7.12.13"
677
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.12.13.tgz#b4416a2d63b8f7be314f3d349bd55a9c1b5171f7"
678
+ integrity sha512-JzYIcj3XtYspZDV8j9ulnoMPZZnF/Cj0LUxPOjR89BdBVx+zYJI9MdMIlUZjbXDX+6YVeS6I3e8op+qQ3BYBoQ==
630
679
  dependencies:
631
- "@babel/helper-plugin-utils" "^7.10.4"
632
- "@babel/helper-replace-supers" "^7.12.1"
680
+ "@babel/helper-plugin-utils" "^7.12.13"
681
+ "@babel/helper-replace-supers" "^7.12.13"
633
682
 
634
- "@babel/plugin-transform-parameters@^7.12.1":
635
- version "7.12.1"
636
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.12.1.tgz#d2e963b038771650c922eff593799c96d853255d"
637
- integrity sha512-xq9C5EQhdPK23ZeCdMxl8bbRnAgHFrw5EOC3KJUsSylZqdkCaFEXxGSBuTSObOpiiHHNyb82es8M1QYgfQGfNg==
683
+ "@babel/plugin-transform-parameters@^7.14.2":
684
+ version "7.14.2"
685
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.14.2.tgz#e4290f72e0e9e831000d066427c4667098decc31"
686
+ integrity sha512-NxoVmA3APNCC1JdMXkdYXuQS+EMdqy0vIwyDHeKHiJKRxmp1qGSdb0JLEIoPRhkx6H/8Qi3RJ3uqOCYw8giy9A==
638
687
  dependencies:
639
- "@babel/helper-plugin-utils" "^7.10.4"
688
+ "@babel/helper-plugin-utils" "^7.13.0"
640
689
 
641
- "@babel/plugin-transform-property-literals@^7.12.1":
642
- version "7.12.1"
643
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.12.1.tgz#41bc81200d730abb4456ab8b3fbd5537b59adecd"
644
- integrity sha512-6MTCR/mZ1MQS+AwZLplX4cEySjCpnIF26ToWo942nqn8hXSm7McaHQNeGx/pt7suI1TWOWMfa/NgBhiqSnX0cQ==
690
+ "@babel/plugin-transform-property-literals@^7.12.13":
691
+ version "7.12.13"
692
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.12.13.tgz#4e6a9e37864d8f1b3bc0e2dce7bf8857db8b1a81"
693
+ integrity sha512-nqVigwVan+lR+g8Fj8Exl0UQX2kymtjcWfMOYM1vTYEKujeyv2SkMgazf2qNcK7l4SDiKyTA/nHCPqL4e2zo1A==
645
694
  dependencies:
646
- "@babel/helper-plugin-utils" "^7.10.4"
695
+ "@babel/helper-plugin-utils" "^7.12.13"
647
696
 
648
- "@babel/plugin-transform-regenerator@^7.12.1":
649
- version "7.12.1"
650
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.12.1.tgz#5f0a28d842f6462281f06a964e88ba8d7ab49753"
651
- integrity sha512-gYrHqs5itw6i4PflFX3OdBPMQdPbF4bj2REIUxlMRUFk0/ZOAIpDFuViuxPjUL7YC8UPnf+XG7/utJvqXdPKng==
697
+ "@babel/plugin-transform-regenerator@^7.13.15":
698
+ version "7.13.15"
699
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.13.15.tgz#e5eb28945bf8b6563e7f818945f966a8d2997f39"
700
+ integrity sha512-Bk9cOLSz8DiurcMETZ8E2YtIVJbFCPGW28DJWUakmyVWtQSm6Wsf0p4B4BfEr/eL2Nkhe/CICiUiMOCi1TPhuQ==
652
701
  dependencies:
653
702
  regenerator-transform "^0.14.2"
654
703
 
655
- "@babel/plugin-transform-reserved-words@^7.12.1":
656
- version "7.12.1"
657
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.12.1.tgz#6fdfc8cc7edcc42b36a7c12188c6787c873adcd8"
658
- integrity sha512-pOnUfhyPKvZpVyBHhSBoX8vfA09b7r00Pmm1sH+29ae2hMTKVmSp4Ztsr8KBKjLjx17H0eJqaRC3bR2iThM54A==
704
+ "@babel/plugin-transform-reserved-words@^7.12.13":
705
+ version "7.12.13"
706
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.12.13.tgz#7d9988d4f06e0fe697ea1d9803188aa18b472695"
707
+ integrity sha512-xhUPzDXxZN1QfiOy/I5tyye+TRz6lA7z6xaT4CLOjPRMVg1ldRf0LHw0TDBpYL4vG78556WuHdyO9oi5UmzZBg==
659
708
  dependencies:
660
- "@babel/helper-plugin-utils" "^7.10.4"
709
+ "@babel/helper-plugin-utils" "^7.12.13"
661
710
 
662
- "@babel/plugin-transform-shorthand-properties@^7.12.1":
663
- version "7.12.1"
664
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.12.1.tgz#0bf9cac5550fce0cfdf043420f661d645fdc75e3"
665
- integrity sha512-GFZS3c/MhX1OusqB1MZ1ct2xRzX5ppQh2JU1h2Pnfk88HtFTM+TWQqJNfwkmxtPQtb/s1tk87oENfXJlx7rSDw==
711
+ "@babel/plugin-transform-shorthand-properties@^7.12.13":
712
+ version "7.12.13"
713
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.12.13.tgz#db755732b70c539d504c6390d9ce90fe64aff7ad"
714
+ integrity sha512-xpL49pqPnLtf0tVluuqvzWIgLEhuPpZzvs2yabUHSKRNlN7ScYU7aMlmavOeyXJZKgZKQRBlh8rHbKiJDraTSw==
666
715
  dependencies:
667
- "@babel/helper-plugin-utils" "^7.10.4"
716
+ "@babel/helper-plugin-utils" "^7.12.13"
668
717
 
669
- "@babel/plugin-transform-spread@^7.12.1":
670
- version "7.12.1"
671
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.12.1.tgz#527f9f311be4ec7fdc2b79bb89f7bf884b3e1e1e"
672
- integrity sha512-vuLp8CP0BE18zVYjsEBZ5xoCecMK6LBMMxYzJnh01rxQRvhNhH1csMMmBfNo5tGpGO+NhdSNW2mzIvBu3K1fng==
718
+ "@babel/plugin-transform-spread@^7.13.0":
719
+ version "7.13.0"
720
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.13.0.tgz#84887710e273c1815ace7ae459f6f42a5d31d5fd"
721
+ integrity sha512-V6vkiXijjzYeFmQTr3dBxPtZYLPcUfY34DebOU27jIl2M/Y8Egm52Hw82CSjjPqd54GTlJs5x+CR7HeNr24ckg==
673
722
  dependencies:
674
- "@babel/helper-plugin-utils" "^7.10.4"
723
+ "@babel/helper-plugin-utils" "^7.13.0"
675
724
  "@babel/helper-skip-transparent-expression-wrappers" "^7.12.1"
676
725
 
677
- "@babel/plugin-transform-sticky-regex@^7.12.7":
678
- version "7.12.7"
679
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.12.7.tgz#560224613ab23987453948ed21d0b0b193fa7fad"
680
- integrity sha512-VEiqZL5N/QvDbdjfYQBhruN0HYjSPjC4XkeqW4ny/jNtH9gcbgaqBIXYEZCNnESMAGs0/K/R7oFGMhOyu/eIxg==
726
+ "@babel/plugin-transform-sticky-regex@^7.12.13":
727
+ version "7.12.13"
728
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.12.13.tgz#760ffd936face73f860ae646fb86ee82f3d06d1f"
729
+ integrity sha512-Jc3JSaaWT8+fr7GRvQP02fKDsYk4K/lYwWq38r/UGfaxo89ajud321NH28KRQ7xy1Ybc0VUE5Pz8psjNNDUglg==
681
730
  dependencies:
682
- "@babel/helper-plugin-utils" "^7.10.4"
731
+ "@babel/helper-plugin-utils" "^7.12.13"
683
732
 
684
- "@babel/plugin-transform-template-literals@^7.12.1":
685
- version "7.12.1"
686
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.12.1.tgz#b43ece6ed9a79c0c71119f576d299ef09d942843"
687
- integrity sha512-b4Zx3KHi+taXB1dVRBhVJtEPi9h1THCeKmae2qP0YdUHIFhVjtpqqNfxeVAa1xeHVhAy4SbHxEwx5cltAu5apw==
733
+ "@babel/plugin-transform-template-literals@^7.13.0":
734
+ version "7.13.0"
735
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.13.0.tgz#a36049127977ad94438dee7443598d1cefdf409d"
736
+ integrity sha512-d67umW6nlfmr1iehCcBv69eSUSySk1EsIS8aTDX4Xo9qajAh6mYtcl4kJrBkGXuxZPEgVr7RVfAvNW6YQkd4Mw==
688
737
  dependencies:
689
- "@babel/helper-plugin-utils" "^7.10.4"
738
+ "@babel/helper-plugin-utils" "^7.13.0"
690
739
 
691
- "@babel/plugin-transform-typeof-symbol@^7.12.10":
692
- version "7.12.10"
693
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.12.10.tgz#de01c4c8f96580bd00f183072b0d0ecdcf0dec4b"
694
- integrity sha512-JQ6H8Rnsogh//ijxspCjc21YPd3VLVoYtAwv3zQmqAt8YGYUtdo5usNhdl4b9/Vir2kPFZl6n1h0PfUz4hJhaA==
740
+ "@babel/plugin-transform-typeof-symbol@^7.12.13":
741
+ version "7.12.13"
742
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.12.13.tgz#785dd67a1f2ea579d9c2be722de8c84cb85f5a7f"
743
+ integrity sha512-eKv/LmUJpMnu4npgfvs3LiHhJua5fo/CysENxa45YCQXZwKnGCQKAg87bvoqSW1fFT+HA32l03Qxsm8ouTY3ZQ==
695
744
  dependencies:
696
- "@babel/helper-plugin-utils" "^7.10.4"
745
+ "@babel/helper-plugin-utils" "^7.12.13"
697
746
 
698
- "@babel/plugin-transform-unicode-escapes@^7.12.1":
699
- version "7.12.1"
700
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.12.1.tgz#5232b9f81ccb07070b7c3c36c67a1b78f1845709"
701
- integrity sha512-I8gNHJLIc7GdApm7wkVnStWssPNbSRMPtgHdmH3sRM1zopz09UWPS4x5V4n1yz/MIWTVnJ9sp6IkuXdWM4w+2Q==
747
+ "@babel/plugin-transform-unicode-escapes@^7.12.13":
748
+ version "7.12.13"
749
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.12.13.tgz#840ced3b816d3b5127dd1d12dcedc5dead1a5e74"
750
+ integrity sha512-0bHEkdwJ/sN/ikBHfSmOXPypN/beiGqjo+o4/5K+vxEFNPRPdImhviPakMKG4x96l85emoa0Z6cDflsdBusZbw==
702
751
  dependencies:
703
- "@babel/helper-plugin-utils" "^7.10.4"
752
+ "@babel/helper-plugin-utils" "^7.12.13"
704
753
 
705
- "@babel/plugin-transform-unicode-regex@^7.12.1":
706
- version "7.12.1"
707
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.12.1.tgz#cc9661f61390db5c65e3febaccefd5c6ac3faecb"
708
- integrity sha512-SqH4ClNngh/zGwHZOOQMTD+e8FGWexILV+ePMyiDJttAWRh5dhDL8rcl5lSgU3Huiq6Zn6pWTMvdPAb21Dwdyg==
754
+ "@babel/plugin-transform-unicode-regex@^7.12.13":
755
+ version "7.12.13"
756
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.12.13.tgz#b52521685804e155b1202e83fc188d34bb70f5ac"
757
+ integrity sha512-mDRzSNY7/zopwisPZ5kM9XKCfhchqIYwAKRERtEnhYscZB79VRekuRSoYbN0+KVe3y8+q1h6A4svXtP7N+UoCA==
709
758
  dependencies:
710
- "@babel/helper-create-regexp-features-plugin" "^7.12.1"
711
- "@babel/helper-plugin-utils" "^7.10.4"
759
+ "@babel/helper-create-regexp-features-plugin" "^7.12.13"
760
+ "@babel/helper-plugin-utils" "^7.12.13"
712
761
 
713
762
  "@babel/preset-env@^7.6.2":
714
- version "7.12.11"
715
- resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.12.11.tgz#55d5f7981487365c93dbbc84507b1c7215e857f9"
716
- integrity sha512-j8Tb+KKIXKYlDBQyIOy4BLxzv1NUOwlHfZ74rvW+Z0Gp4/cI2IMDPBWAgWceGcE7aep9oL/0K9mlzlMGxA8yNw==
717
- dependencies:
718
- "@babel/compat-data" "^7.12.7"
719
- "@babel/helper-compilation-targets" "^7.12.5"
720
- "@babel/helper-module-imports" "^7.12.5"
721
- "@babel/helper-plugin-utils" "^7.10.4"
722
- "@babel/helper-validator-option" "^7.12.11"
723
- "@babel/plugin-proposal-async-generator-functions" "^7.12.1"
724
- "@babel/plugin-proposal-class-properties" "^7.12.1"
725
- "@babel/plugin-proposal-dynamic-import" "^7.12.1"
726
- "@babel/plugin-proposal-export-namespace-from" "^7.12.1"
727
- "@babel/plugin-proposal-json-strings" "^7.12.1"
728
- "@babel/plugin-proposal-logical-assignment-operators" "^7.12.1"
729
- "@babel/plugin-proposal-nullish-coalescing-operator" "^7.12.1"
730
- "@babel/plugin-proposal-numeric-separator" "^7.12.7"
731
- "@babel/plugin-proposal-object-rest-spread" "^7.12.1"
732
- "@babel/plugin-proposal-optional-catch-binding" "^7.12.1"
733
- "@babel/plugin-proposal-optional-chaining" "^7.12.7"
734
- "@babel/plugin-proposal-private-methods" "^7.12.1"
735
- "@babel/plugin-proposal-unicode-property-regex" "^7.12.1"
736
- "@babel/plugin-syntax-async-generators" "^7.8.0"
737
- "@babel/plugin-syntax-class-properties" "^7.12.1"
738
- "@babel/plugin-syntax-dynamic-import" "^7.8.0"
763
+ version "7.14.2"
764
+ resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.14.2.tgz#e80612965da73579c84ad2f963c2359c71524ed5"
765
+ integrity sha512-7dD7lVT8GMrE73v4lvDEb85cgcQhdES91BSD7jS/xjC6QY8PnRhux35ac+GCpbiRhp8crexBvZZqnaL6VrY8TQ==
766
+ dependencies:
767
+ "@babel/compat-data" "^7.14.0"
768
+ "@babel/helper-compilation-targets" "^7.13.16"
769
+ "@babel/helper-plugin-utils" "^7.13.0"
770
+ "@babel/helper-validator-option" "^7.12.17"
771
+ "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining" "^7.13.12"
772
+ "@babel/plugin-proposal-async-generator-functions" "^7.14.2"
773
+ "@babel/plugin-proposal-class-properties" "^7.13.0"
774
+ "@babel/plugin-proposal-class-static-block" "^7.13.11"
775
+ "@babel/plugin-proposal-dynamic-import" "^7.14.2"
776
+ "@babel/plugin-proposal-export-namespace-from" "^7.14.2"
777
+ "@babel/plugin-proposal-json-strings" "^7.14.2"
778
+ "@babel/plugin-proposal-logical-assignment-operators" "^7.14.2"
779
+ "@babel/plugin-proposal-nullish-coalescing-operator" "^7.14.2"
780
+ "@babel/plugin-proposal-numeric-separator" "^7.14.2"
781
+ "@babel/plugin-proposal-object-rest-spread" "^7.14.2"
782
+ "@babel/plugin-proposal-optional-catch-binding" "^7.14.2"
783
+ "@babel/plugin-proposal-optional-chaining" "^7.14.2"
784
+ "@babel/plugin-proposal-private-methods" "^7.13.0"
785
+ "@babel/plugin-proposal-private-property-in-object" "^7.14.0"
786
+ "@babel/plugin-proposal-unicode-property-regex" "^7.12.13"
787
+ "@babel/plugin-syntax-async-generators" "^7.8.4"
788
+ "@babel/plugin-syntax-class-properties" "^7.12.13"
789
+ "@babel/plugin-syntax-class-static-block" "^7.12.13"
790
+ "@babel/plugin-syntax-dynamic-import" "^7.8.3"
739
791
  "@babel/plugin-syntax-export-namespace-from" "^7.8.3"
740
- "@babel/plugin-syntax-json-strings" "^7.8.0"
792
+ "@babel/plugin-syntax-json-strings" "^7.8.3"
741
793
  "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4"
742
- "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.0"
794
+ "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3"
743
795
  "@babel/plugin-syntax-numeric-separator" "^7.10.4"
744
- "@babel/plugin-syntax-object-rest-spread" "^7.8.0"
745
- "@babel/plugin-syntax-optional-catch-binding" "^7.8.0"
746
- "@babel/plugin-syntax-optional-chaining" "^7.8.0"
747
- "@babel/plugin-syntax-top-level-await" "^7.12.1"
748
- "@babel/plugin-transform-arrow-functions" "^7.12.1"
749
- "@babel/plugin-transform-async-to-generator" "^7.12.1"
750
- "@babel/plugin-transform-block-scoped-functions" "^7.12.1"
751
- "@babel/plugin-transform-block-scoping" "^7.12.11"
752
- "@babel/plugin-transform-classes" "^7.12.1"
753
- "@babel/plugin-transform-computed-properties" "^7.12.1"
754
- "@babel/plugin-transform-destructuring" "^7.12.1"
755
- "@babel/plugin-transform-dotall-regex" "^7.12.1"
756
- "@babel/plugin-transform-duplicate-keys" "^7.12.1"
757
- "@babel/plugin-transform-exponentiation-operator" "^7.12.1"
758
- "@babel/plugin-transform-for-of" "^7.12.1"
759
- "@babel/plugin-transform-function-name" "^7.12.1"
760
- "@babel/plugin-transform-literals" "^7.12.1"
761
- "@babel/plugin-transform-member-expression-literals" "^7.12.1"
762
- "@babel/plugin-transform-modules-amd" "^7.12.1"
763
- "@babel/plugin-transform-modules-commonjs" "^7.12.1"
764
- "@babel/plugin-transform-modules-systemjs" "^7.12.1"
765
- "@babel/plugin-transform-modules-umd" "^7.12.1"
766
- "@babel/plugin-transform-named-capturing-groups-regex" "^7.12.1"
767
- "@babel/plugin-transform-new-target" "^7.12.1"
768
- "@babel/plugin-transform-object-super" "^7.12.1"
769
- "@babel/plugin-transform-parameters" "^7.12.1"
770
- "@babel/plugin-transform-property-literals" "^7.12.1"
771
- "@babel/plugin-transform-regenerator" "^7.12.1"
772
- "@babel/plugin-transform-reserved-words" "^7.12.1"
773
- "@babel/plugin-transform-shorthand-properties" "^7.12.1"
774
- "@babel/plugin-transform-spread" "^7.12.1"
775
- "@babel/plugin-transform-sticky-regex" "^7.12.7"
776
- "@babel/plugin-transform-template-literals" "^7.12.1"
777
- "@babel/plugin-transform-typeof-symbol" "^7.12.10"
778
- "@babel/plugin-transform-unicode-escapes" "^7.12.1"
779
- "@babel/plugin-transform-unicode-regex" "^7.12.1"
780
- "@babel/preset-modules" "^0.1.3"
781
- "@babel/types" "^7.12.11"
782
- core-js-compat "^3.8.0"
783
- semver "^5.5.0"
796
+ "@babel/plugin-syntax-object-rest-spread" "^7.8.3"
797
+ "@babel/plugin-syntax-optional-catch-binding" "^7.8.3"
798
+ "@babel/plugin-syntax-optional-chaining" "^7.8.3"
799
+ "@babel/plugin-syntax-private-property-in-object" "^7.14.0"
800
+ "@babel/plugin-syntax-top-level-await" "^7.12.13"
801
+ "@babel/plugin-transform-arrow-functions" "^7.13.0"
802
+ "@babel/plugin-transform-async-to-generator" "^7.13.0"
803
+ "@babel/plugin-transform-block-scoped-functions" "^7.12.13"
804
+ "@babel/plugin-transform-block-scoping" "^7.14.2"
805
+ "@babel/plugin-transform-classes" "^7.14.2"
806
+ "@babel/plugin-transform-computed-properties" "^7.13.0"
807
+ "@babel/plugin-transform-destructuring" "^7.13.17"
808
+ "@babel/plugin-transform-dotall-regex" "^7.12.13"
809
+ "@babel/plugin-transform-duplicate-keys" "^7.12.13"
810
+ "@babel/plugin-transform-exponentiation-operator" "^7.12.13"
811
+ "@babel/plugin-transform-for-of" "^7.13.0"
812
+ "@babel/plugin-transform-function-name" "^7.12.13"
813
+ "@babel/plugin-transform-literals" "^7.12.13"
814
+ "@babel/plugin-transform-member-expression-literals" "^7.12.13"
815
+ "@babel/plugin-transform-modules-amd" "^7.14.2"
816
+ "@babel/plugin-transform-modules-commonjs" "^7.14.0"
817
+ "@babel/plugin-transform-modules-systemjs" "^7.13.8"
818
+ "@babel/plugin-transform-modules-umd" "^7.14.0"
819
+ "@babel/plugin-transform-named-capturing-groups-regex" "^7.12.13"
820
+ "@babel/plugin-transform-new-target" "^7.12.13"
821
+ "@babel/plugin-transform-object-super" "^7.12.13"
822
+ "@babel/plugin-transform-parameters" "^7.14.2"
823
+ "@babel/plugin-transform-property-literals" "^7.12.13"
824
+ "@babel/plugin-transform-regenerator" "^7.13.15"
825
+ "@babel/plugin-transform-reserved-words" "^7.12.13"
826
+ "@babel/plugin-transform-shorthand-properties" "^7.12.13"
827
+ "@babel/plugin-transform-spread" "^7.13.0"
828
+ "@babel/plugin-transform-sticky-regex" "^7.12.13"
829
+ "@babel/plugin-transform-template-literals" "^7.13.0"
830
+ "@babel/plugin-transform-typeof-symbol" "^7.12.13"
831
+ "@babel/plugin-transform-unicode-escapes" "^7.12.13"
832
+ "@babel/plugin-transform-unicode-regex" "^7.12.13"
833
+ "@babel/preset-modules" "^0.1.4"
834
+ "@babel/types" "^7.14.2"
835
+ babel-plugin-polyfill-corejs2 "^0.2.0"
836
+ babel-plugin-polyfill-corejs3 "^0.2.0"
837
+ babel-plugin-polyfill-regenerator "^0.2.0"
838
+ core-js-compat "^3.9.0"
839
+ semver "^6.3.0"
784
840
 
785
- "@babel/preset-modules@^0.1.3":
841
+ "@babel/preset-modules@^0.1.4":
786
842
  version "0.1.4"
787
843
  resolved "https://registry.yarnpkg.com/@babel/preset-modules/-/preset-modules-0.1.4.tgz#362f2b68c662842970fdb5e254ffc8fc1c2e415e"
788
844
  integrity sha512-J36NhwnfdzpmH41M1DrnkkgAqhZaqr/NBdPfQ677mLzlaXo+oDiv1deyCDtgAhz8p328otdob0Du7+xgHGZbKg==
@@ -794,54 +850,52 @@
794
850
  esutils "^2.0.2"
795
851
 
796
852
  "@babel/register@^7.6.2":
797
- version "7.12.10"
798
- resolved "https://registry.yarnpkg.com/@babel/register/-/register-7.12.10.tgz#19b87143f17128af4dbe7af54c735663b3999f60"
799
- integrity sha512-EvX/BvMMJRAA3jZgILWgbsrHwBQvllC5T8B29McyME8DvkdOxk4ujESfrMvME8IHSDvWXrmMXxPvA/lx2gqPLQ==
853
+ version "7.13.16"
854
+ resolved "https://registry.yarnpkg.com/@babel/register/-/register-7.13.16.tgz#ae3ab0b55c8ec28763877383c454f01521d9a53d"
855
+ integrity sha512-dh2t11ysujTwByQjXNgJ48QZ2zcXKQVdV8s0TbeMI0flmtGWCdTwK9tJiACHXPLmncm5+ktNn/diojA45JE4jg==
800
856
  dependencies:
857
+ clone-deep "^4.0.1"
801
858
  find-cache-dir "^2.0.0"
802
- lodash "^4.17.19"
803
859
  make-dir "^2.1.0"
804
860
  pirates "^4.0.0"
805
861
  source-map-support "^0.5.16"
806
862
 
807
863
  "@babel/runtime@^7.8.4", "@babel/runtime@^7.8.7":
808
- version "7.12.5"
809
- resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.12.5.tgz#410e7e487441e1b360c29be715d870d9b985882e"
810
- integrity sha512-plcc+hbExy3McchJCEQG3knOsuh3HH+Prx1P6cLIkET/0dLuQDEnrT+s27Axgc9bqfsmNUNHfscgMUdBpC9xfg==
864
+ version "7.14.0"
865
+ resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.14.0.tgz#46794bc20b612c5f75e62dd071e24dfd95f1cbe6"
866
+ integrity sha512-JELkvo/DlpNdJ7dlyw/eY7E0suy5i5GQH+Vlxaq1nsNJ+H7f4Vtv3jMeCEgRhZZQFXTjldYfQgv2qmM6M1v5wA==
811
867
  dependencies:
812
868
  regenerator-runtime "^0.13.4"
813
869
 
814
- "@babel/template@^7.10.4", "@babel/template@^7.12.7":
815
- version "7.12.7"
816
- resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.12.7.tgz#c817233696018e39fbb6c491d2fb684e05ed43bc"
817
- integrity sha512-GkDzmHS6GV7ZeXfJZ0tLRBhZcMcY0/Lnb+eEbXDBfCAcZCjrZKe6p3J4we/D24O9Y8enxWAg1cWwof59yLh2ow==
818
- dependencies:
819
- "@babel/code-frame" "^7.10.4"
820
- "@babel/parser" "^7.12.7"
821
- "@babel/types" "^7.12.7"
822
-
823
- "@babel/traverse@^7.10.4", "@babel/traverse@^7.12.1", "@babel/traverse@^7.12.10", "@babel/traverse@^7.12.5":
824
- version "7.12.12"
825
- resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.12.12.tgz#d0cd87892704edd8da002d674bc811ce64743376"
826
- integrity sha512-s88i0X0lPy45RrLM8b9mz8RPH5FqO9G9p7ti59cToE44xFm1Q+Pjh5Gq4SXBbtb88X7Uy7pexeqRIQDDMNkL0w==
827
- dependencies:
828
- "@babel/code-frame" "^7.12.11"
829
- "@babel/generator" "^7.12.11"
830
- "@babel/helper-function-name" "^7.12.11"
831
- "@babel/helper-split-export-declaration" "^7.12.11"
832
- "@babel/parser" "^7.12.11"
833
- "@babel/types" "^7.12.12"
870
+ "@babel/template@^7.12.13":
871
+ version "7.12.13"
872
+ resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.12.13.tgz#530265be8a2589dbb37523844c5bcb55947fb327"
873
+ integrity sha512-/7xxiGA57xMo/P2GVvdEumr8ONhFOhfgq2ihK3h1e6THqzTAkHbkXgB0xI9yeTfIUoH3+oAeHhqm/I43OTbbjA==
874
+ dependencies:
875
+ "@babel/code-frame" "^7.12.13"
876
+ "@babel/parser" "^7.12.13"
877
+ "@babel/types" "^7.12.13"
878
+
879
+ "@babel/traverse@^7.13.0", "@babel/traverse@^7.13.15", "@babel/traverse@^7.14.0", "@babel/traverse@^7.14.2":
880
+ version "7.14.2"
881
+ resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.14.2.tgz#9201a8d912723a831c2679c7ebbf2fe1416d765b"
882
+ integrity sha512-TsdRgvBFHMyHOOzcP9S6QU0QQtjxlRpEYOy3mcCO5RgmC305ki42aSAmfZEMSSYBla2oZ9BMqYlncBaKmD/7iA==
883
+ dependencies:
884
+ "@babel/code-frame" "^7.12.13"
885
+ "@babel/generator" "^7.14.2"
886
+ "@babel/helper-function-name" "^7.14.2"
887
+ "@babel/helper-split-export-declaration" "^7.12.13"
888
+ "@babel/parser" "^7.14.2"
889
+ "@babel/types" "^7.14.2"
834
890
  debug "^4.1.0"
835
891
  globals "^11.1.0"
836
- lodash "^4.17.19"
837
892
 
838
- "@babel/types@^7.10.4", "@babel/types@^7.10.5", "@babel/types@^7.12.1", "@babel/types@^7.12.10", "@babel/types@^7.12.11", "@babel/types@^7.12.12", "@babel/types@^7.12.5", "@babel/types@^7.12.7", "@babel/types@^7.4.4":
839
- version "7.12.12"
840
- resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.12.12.tgz#4608a6ec313abbd87afa55004d373ad04a96c299"
841
- integrity sha512-lnIX7piTxOH22xE7fDXDbSHg9MM1/6ORnafpJmov5rs0kX5g4BZxeXNJLXsMRiO0U5Rb8/FvMS6xlTnTHvxonQ==
893
+ "@babel/types@^7.12.1", "@babel/types@^7.12.13", "@babel/types@^7.13.0", "@babel/types@^7.13.12", "@babel/types@^7.13.16", "@babel/types@^7.14.0", "@babel/types@^7.14.2", "@babel/types@^7.4.4":
894
+ version "7.14.2"
895
+ resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.14.2.tgz#4208ae003107ef8a057ea8333e56eb64d2f6a2c3"
896
+ integrity sha512-SdjAG/3DikRHpUOjxZgnkbR11xUlyDMUFJdvnIgZEE16mqmY0BINMmc4//JMJglEmn6i7sq6p+mGrFWyZ98EEw==
842
897
  dependencies:
843
- "@babel/helper-validator-identifier" "^7.12.11"
844
- lodash "^4.17.19"
898
+ "@babel/helper-validator-identifier" "^7.14.0"
845
899
  to-fast-properties "^2.0.0"
846
900
 
847
901
  "@glimmer/interfaces@^0.41.4":
@@ -891,9 +945,9 @@
891
945
  fastq "^1.6.0"
892
946
 
893
947
  "@rails/actioncable@>= 6.0":
894
- version "6.1.1"
895
- resolved "https://registry.yarnpkg.com/@rails/actioncable/-/actioncable-6.1.1.tgz#e980b2ea1c62cae17bcddad37deb6ba88d498b63"
896
- integrity sha512-A8toxvSuzK/wX9uMwyV6T1EYzlqzIJNrO8XiNCSNsmKresdX2cbAjxFdMu9haaPJPjl3aC2FKRJeVCUWVtLPAQ==
948
+ version "6.1.3"
949
+ resolved "https://registry.yarnpkg.com/@rails/actioncable/-/actioncable-6.1.3.tgz#c8a67ec4d22ecd6931f7ebd98143fddbc815419a"
950
+ integrity sha512-m02524MR9cTnUNfGz39Lkx9jVvuL0tle4O7YgvouJ7H83FILxzG1nQ5jw8pAjLAr9XQGu+P1sY4SKE3zyhCNjw==
897
951
 
898
952
  "@samverschueren/stream-to-observable@^0.3.0":
899
953
  version "0.3.1"
@@ -935,14 +989,14 @@
935
989
  "@types/node" "*"
936
990
 
937
991
  "@types/minimatch@*":
938
- version "3.0.3"
939
- resolved "https://registry.yarnpkg.com/@types/minimatch/-/minimatch-3.0.3.tgz#3dca0e3f33b200fc7d1139c0cd96c1268cadfd9d"
940
- integrity sha512-tHq6qdbT9U1IRSGf14CL0pUlULksvY9OZ+5eEgl1N7t+OA3tGvNpxJCzuKQlsNgCVwbAs670L1vcVQi8j9HjnA==
992
+ version "3.0.4"
993
+ resolved "https://registry.yarnpkg.com/@types/minimatch/-/minimatch-3.0.4.tgz#f0ec25dbf2f0e4b18647313ac031134ca5b24b21"
994
+ integrity sha512-1z8k4wzFnNjVK/tlxvrWuK5WMt6mydWWP7+zvH5eFep4oj+UkrfiJTRtjCeBXNpwaA/FYqqtb4/QS4ianFpIRA==
941
995
 
942
996
  "@types/node@*":
943
- version "14.14.22"
944
- resolved "https://registry.yarnpkg.com/@types/node/-/node-14.14.22.tgz#0d29f382472c4ccf3bd96ff0ce47daf5b7b84b18"
945
- integrity sha512-g+f/qj/cNcqKkc3tFqlXOYjrmZA+jNBiDzbP3kH+B+otKFqAdPgVTGP1IeKRdMml/aE69as5S4FqtxAbl+LaMw==
997
+ version "15.3.1"
998
+ resolved "https://registry.yarnpkg.com/@types/node/-/node-15.3.1.tgz#23a06b87eedb524016616e886b116b8fdcb180af"
999
+ integrity sha512-weaeiP4UF4XgF++3rpQhpIJWsCTS4QJw5gvBhQu6cFIxTwyxWIe3xbnrY/o2lTCQ0lsdb8YIUDUvLR4Vuz5rbw==
946
1000
 
947
1001
  "@types/unist@^2.0.0", "@types/unist@^2.0.2":
948
1002
  version "2.0.3"
@@ -966,7 +1020,7 @@
966
1020
  resolved "https://registry.yarnpkg.com/@ungap/promise-all-settled/-/promise-all-settled-1.1.2.tgz#aa58042711d6e3275dd37dc597e5d31e8c290a44"
967
1021
  integrity sha512-sL/cEvJWAnClXw0wHk85/2L0G6Sj8UB0Ctc1TEMbKSsmpRosqhwj9gWgFRZSrBr2f9tiXISwNhCPmlfqUqyb9Q==
968
1022
 
969
- abab@^2.0.3:
1023
+ abab@^2.0.3, abab@^2.0.5:
970
1024
  version "2.0.5"
971
1025
  resolved "https://registry.yarnpkg.com/abab/-/abab-2.0.5.tgz#c0b678fb32d60fc1219c784d6a826fe385aeb79a"
972
1026
  integrity sha512-9IK9EadsbHo6jLWIpxpR6pL0sazTXV6+SQv25ZB+F7Bj9mJNaOc4nCRabwd5M/JwmUa8idz6Eci6eKfJryPs6Q==
@@ -994,6 +1048,11 @@ acorn@^7.1.1:
994
1048
  resolved "https://registry.yarnpkg.com/acorn/-/acorn-7.4.1.tgz#feaed255973d2e77555b83dbc08851a6c63520fa"
995
1049
  integrity sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==
996
1050
 
1051
+ acorn@^8.1.0:
1052
+ version "8.2.4"
1053
+ resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.2.4.tgz#caba24b08185c3b56e3168e97d15ed17f4d31fd0"
1054
+ integrity sha512-Ibt84YwBDDA890eDiDCEqcbwvHlBvzzDkU2cGBBDDI1QWT12jTiXIOn2CIw5KK4i6N5Z2HUxwYjzriDyqaqqZg==
1055
+
997
1056
  aggregate-error@^3.0.0:
998
1057
  version "3.1.0"
999
1058
  resolved "https://registry.yarnpkg.com/aggregate-error/-/aggregate-error-3.1.0.tgz#92670ff50f5359bdb7a3e0d40d0ec30c5737687a"
@@ -1038,11 +1097,11 @@ ansi-escapes@^3.0.0:
1038
1097
  integrity sha512-cBhpre4ma+U0T1oM5fXg7Dy1Jw7zzwv7lt/GoCpr+hDQJoYnKVPLL4dCvSEFMmQurOQvSrwT7SL/DAlhBI97RQ==
1039
1098
 
1040
1099
  ansi-escapes@^4.2.1:
1041
- version "4.3.1"
1042
- resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-4.3.1.tgz#a5c47cc43181f1f38ffd7076837700d395522a61"
1043
- integrity sha512-JWF7ocqNrp8u9oqpgV+wH5ftbt+cfvv+PTjOvKLT3AdYly/LmORARfEVT1iyjwN+4MqE5UmVKoAdIBqeoCHgLA==
1100
+ version "4.3.2"
1101
+ resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-4.3.2.tgz#6b2291d1db7d98b6521d5f1efa42d0f3a9feb65e"
1102
+ integrity sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==
1044
1103
  dependencies:
1045
- type-fest "^0.11.0"
1104
+ type-fest "^0.21.3"
1046
1105
 
1047
1106
  ansi-regex@^2.0.0:
1048
1107
  version "2.1.1"
@@ -1076,7 +1135,7 @@ ansi-styles@^3.2.0, ansi-styles@^3.2.1:
1076
1135
  dependencies:
1077
1136
  color-convert "^1.9.0"
1078
1137
 
1079
- ansi-styles@^4.1.0:
1138
+ ansi-styles@^4.0.0, ansi-styles@^4.1.0:
1080
1139
  version "4.3.0"
1081
1140
  resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937"
1082
1141
  integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==
@@ -1089,9 +1148,9 @@ any-observable@^0.3.0:
1089
1148
  integrity sha512-/FQM1EDkTsf63Ub2C6O7GuYFDsSXUwsaZDurV0np41ocwq0jthUAYCmhBX9f+KwlaCgIuWyr/4WlUQUBfKfZog==
1090
1149
 
1091
1150
  anymatch@~3.1.1:
1092
- version "3.1.1"
1093
- resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.1.tgz#c55ecf02185e2469259399310c173ce31233b142"
1094
- integrity sha512-mM8522psRCqzV+6LhomX5wgp25YVibjh8Wj23I5RPkPppSVSjyKD2A2mBJmWGa+KN7f2D6LNh9jkBCeyLktzjg==
1151
+ version "3.1.2"
1152
+ resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.2.tgz#c0557c096af32f106198f4f4e2a383537e378716"
1153
+ integrity sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==
1095
1154
  dependencies:
1096
1155
  normalize-path "^3.0.0"
1097
1156
  picomatch "^2.0.4"
@@ -1103,16 +1162,16 @@ argparse@^1.0.7:
1103
1162
  dependencies:
1104
1163
  sprintf-js "~1.0.2"
1105
1164
 
1165
+ argparse@^2.0.1:
1166
+ version "2.0.1"
1167
+ resolved "https://registry.yarnpkg.com/argparse/-/argparse-2.0.1.tgz#246f50f3ca78a3240f6c997e8a9bd1eac49e4b38"
1168
+ integrity sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==
1169
+
1106
1170
  array-differ@^2.0.3:
1107
1171
  version "2.1.0"
1108
1172
  resolved "https://registry.yarnpkg.com/array-differ/-/array-differ-2.1.0.tgz#4b9c1c3f14b906757082925769e8ab904f4801b1"
1109
1173
  integrity sha512-KbUpJgx909ZscOc/7CLATBFam7P1Z1QRQInvgT0UztM9Q72aGKCunKASAl7WNW0tnPmPyEMeMhdsfWhfmW037w==
1110
1174
 
1111
- array-filter@^1.0.0:
1112
- version "1.0.0"
1113
- resolved "https://registry.yarnpkg.com/array-filter/-/array-filter-1.0.0.tgz#baf79e62e6ef4c2a4c0b831232daffec251f9d83"
1114
- integrity sha1-uveeYubvTCpMC4MSMtr/7CUfnYM=
1115
-
1116
1175
  array-union@^1.0.1, array-union@^1.0.2:
1117
1176
  version "1.0.2"
1118
1177
  resolved "https://registry.yarnpkg.com/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39"
@@ -1130,6 +1189,17 @@ array-uniq@^1.0.1:
1130
1189
  resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6"
1131
1190
  integrity sha1-r2rId6Jcx/dOBYiUdThY39sk/bY=
1132
1191
 
1192
+ array.prototype.filter@^1.0.0:
1193
+ version "1.0.0"
1194
+ resolved "https://registry.yarnpkg.com/array.prototype.filter/-/array.prototype.filter-1.0.0.tgz#24d63e38983cdc6bf023a3c574b2f2a3f384c301"
1195
+ integrity sha512-TfO1gz+tLm+Bswq0FBOXPqAchtCr2Rn48T8dLJoRFl8NoEosjZmzptmuo1X8aZBzZcqsR1W8U761tjACJtngTQ==
1196
+ dependencies:
1197
+ call-bind "^1.0.2"
1198
+ define-properties "^1.1.3"
1199
+ es-abstract "^1.18.0"
1200
+ es-array-method-boxes-properly "^1.0.0"
1201
+ is-string "^1.0.5"
1202
+
1133
1203
  arrify@^1.0.1:
1134
1204
  version "1.0.1"
1135
1205
  resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d"
@@ -1168,11 +1238,11 @@ asynckit@^0.4.0:
1168
1238
  integrity sha1-x57Zf380y48robyXkLzDZkdLS3k=
1169
1239
 
1170
1240
  available-typed-arrays@^1.0.2:
1171
- version "1.0.2"
1172
- resolved "https://registry.yarnpkg.com/available-typed-arrays/-/available-typed-arrays-1.0.2.tgz#6b098ca9d8039079ee3f77f7b783c4480ba513f5"
1173
- integrity sha512-XWX3OX8Onv97LMk/ftVyBibpGwY5a8SmuxZPzeOxqmuEqUCOM9ZE+uIaD1VNJ5QnvU2UQusvmKbuM1FR8QWGfQ==
1241
+ version "1.0.3"
1242
+ resolved "https://registry.yarnpkg.com/available-typed-arrays/-/available-typed-arrays-1.0.3.tgz#fb7d02445bfedefad79fad1fe47931163a227198"
1243
+ integrity sha512-CuPhFULixV/d89POo1UG4GqGbR7dmrefY2ZdmsYakeR4gOSJXoF7tfeaiqMHGOMrlTiJoeEs87fpLsBYmE2BMw==
1174
1244
  dependencies:
1175
- array-filter "^1.0.0"
1245
+ array.prototype.filter "^1.0.0"
1176
1246
 
1177
1247
  aws-sign2@~0.7.0:
1178
1248
  version "0.7.0"
@@ -1191,15 +1261,39 @@ babel-plugin-dynamic-import-node@^2.3.3:
1191
1261
  dependencies:
1192
1262
  object.assign "^4.1.0"
1193
1263
 
1264
+ babel-plugin-polyfill-corejs2@^0.2.0:
1265
+ version "0.2.0"
1266
+ resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.2.0.tgz#686775bf9a5aa757e10520903675e3889caeedc4"
1267
+ integrity sha512-9bNwiR0dS881c5SHnzCmmGlMkJLl0OUZvxrxHo9w/iNoRuqaPjqlvBf4HrovXtQs/au5yKkpcdgfT1cC5PAZwg==
1268
+ dependencies:
1269
+ "@babel/compat-data" "^7.13.11"
1270
+ "@babel/helper-define-polyfill-provider" "^0.2.0"
1271
+ semver "^6.1.1"
1272
+
1273
+ babel-plugin-polyfill-corejs3@^0.2.0:
1274
+ version "0.2.0"
1275
+ resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.2.0.tgz#f4b4bb7b19329827df36ff56f6e6d367026cb7a2"
1276
+ integrity sha512-zZyi7p3BCUyzNxLx8KV61zTINkkV65zVkDAFNZmrTCRVhjo1jAS+YLvDJ9Jgd/w2tsAviCwFHReYfxO3Iql8Yg==
1277
+ dependencies:
1278
+ "@babel/helper-define-polyfill-provider" "^0.2.0"
1279
+ core-js-compat "^3.9.1"
1280
+
1281
+ babel-plugin-polyfill-regenerator@^0.2.0:
1282
+ version "0.2.0"
1283
+ resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.2.0.tgz#853f5f5716f4691d98c84f8069c7636ea8da7ab8"
1284
+ integrity sha512-J7vKbCuD2Xi/eEHxquHN14bXAW9CXtecwuLrOIDJtcZzTaPzV1VdEfoUf9AzcRBMolKUQKM9/GVojeh0hFiqMg==
1285
+ dependencies:
1286
+ "@babel/helper-define-polyfill-provider" "^0.2.0"
1287
+
1194
1288
  bail@^1.0.0:
1195
1289
  version "1.0.5"
1196
1290
  resolved "https://registry.yarnpkg.com/bail/-/bail-1.0.5.tgz#b6fa133404a392cbc1f8c4bf63f5953351e7a776"
1197
1291
  integrity sha512-xFbRxM1tahm08yHBP16MMjVUAvDaBMD38zsM9EMAUN61omwLmKlOpB/Zku5QkjZ8TZ4vn53pj+t518cH0S03RQ==
1198
1292
 
1199
1293
  balanced-match@^1.0.0:
1200
- version "1.0.0"
1201
- resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767"
1202
- integrity sha1-ibTRmasr7kneFk6gK4nORi1xt2c=
1294
+ version "1.0.2"
1295
+ resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee"
1296
+ integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==
1203
1297
 
1204
1298
  bcrypt-pbkdf@^1.0.0:
1205
1299
  version "1.0.2"
@@ -1238,26 +1332,26 @@ browser-stdout@1.3.1:
1238
1332
  resolved "https://registry.yarnpkg.com/browser-stdout/-/browser-stdout-1.3.1.tgz#baa559ee14ced73452229bad7326467c61fabd60"
1239
1333
  integrity sha512-qhAVI1+Av2X7qelOfAIYwXONood6XlZE/fXaBSmW/T5SzLAmCgzi+eiWE7fUvbHaeNBQH13UftjpXxsfLkMpgw==
1240
1334
 
1241
- browserslist@^4.14.5, browserslist@^4.16.1:
1242
- version "4.16.1"
1243
- resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.16.1.tgz#bf757a2da376b3447b800a16f0f1c96358138766"
1244
- integrity sha512-UXhDrwqsNcpTYJBTZsbGATDxZbiVDsx6UjpmRUmtnP10pr8wAYr5LgFoEFw9ixriQH2mv/NX2SfGzE/o8GndLA==
1335
+ browserslist@^4.14.5, browserslist@^4.16.6:
1336
+ version "4.16.6"
1337
+ resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.16.6.tgz#d7901277a5a88e554ed305b183ec9b0c08f66fa2"
1338
+ integrity sha512-Wspk/PqO+4W9qp5iUTJsa1B/QrYn1keNCcEP5OvP7WBwT4KaDly0uONYmC6Xa3Z5IqnUgS0KcgLYu1l74x0ZXQ==
1245
1339
  dependencies:
1246
- caniuse-lite "^1.0.30001173"
1247
- colorette "^1.2.1"
1248
- electron-to-chromium "^1.3.634"
1340
+ caniuse-lite "^1.0.30001219"
1341
+ colorette "^1.2.2"
1342
+ electron-to-chromium "^1.3.723"
1249
1343
  escalade "^3.1.1"
1250
- node-releases "^1.1.69"
1344
+ node-releases "^1.1.71"
1251
1345
 
1252
1346
  buffer-from@^1.0.0:
1253
1347
  version "1.1.1"
1254
1348
  resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.1.tgz#32713bc028f75c02fdb710d7c7bcec1f2c6070ef"
1255
1349
  integrity sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A==
1256
1350
 
1257
- "cable_ready@>= 4.5.0":
1258
- version "4.5.0"
1259
- resolved "https://registry.yarnpkg.com/cable_ready/-/cable_ready-4.5.0.tgz#1207218dd16934d12addfbd34c26ead853570672"
1260
- integrity sha512-9bom1DuYe1teBdRckgKWjg+rWRLWrkOvkhzlXkhb33X+Pfu/QK9e4vGk6hGK9PVKVr0SYZC41dByFGknW4spLg==
1351
+ cable_ready@5.0.0-pre0:
1352
+ version "5.0.0-pre0"
1353
+ resolved "https://registry.yarnpkg.com/cable_ready/-/cable_ready-5.0.0-pre0.tgz#eeca1305f83e06ada44d95690c073df084719fef"
1354
+ integrity sha512-hBeCg2wjfa4PSfNo6uHaVTVgTDi0wPUqBBf/pJpAoEjj94BVVLShGnBIe3n0I/f4FClcOQePd8CXl8p2hDj2bw==
1261
1355
  dependencies:
1262
1356
  morphdom "^2.6.1"
1263
1357
 
@@ -1293,7 +1387,7 @@ callsites@^3.0.0:
1293
1387
  resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73"
1294
1388
  integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==
1295
1389
 
1296
- camelcase@5.3.1, camelcase@^5.0.0:
1390
+ camelcase@5.3.1:
1297
1391
  version "5.3.1"
1298
1392
  resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-5.3.1.tgz#e3c9b31569e106811df242f715725a1f4c494320"
1299
1393
  integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==
@@ -1303,10 +1397,10 @@ camelcase@^6.0.0:
1303
1397
  resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-6.2.0.tgz#924af881c9d525ac9d87f40d964e5cea982a1809"
1304
1398
  integrity sha512-c7wVvbw3f37nuobQNtgsgG9POC9qMbNuMQmTCqZv23b6MIz0fcYpBiOlv9gEN/hdLdnZTDQhg6e9Dq5M1vKvfg==
1305
1399
 
1306
- caniuse-lite@^1.0.30001173:
1307
- version "1.0.30001179"
1308
- resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001179.tgz#b0803883b4471a6c62066fb1752756f8afc699c8"
1309
- integrity sha512-blMmO0QQujuUWZKyVrD1msR4WNDAqb/UPO1Sw2WWsQ7deoM5bJiicKnWJ1Y0NS/aGINSnKPIWBMw5luX+NDUCA==
1400
+ caniuse-lite@^1.0.30001219:
1401
+ version "1.0.30001228"
1402
+ resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001228.tgz#bfdc5942cd3326fa51ee0b42fbef4da9d492a7fa"
1403
+ integrity sha512-QQmLOGJ3DEgokHbMSA8cj2a+geXqmnpyOFT0lhQV6P3/YOJvGDEwoedcwxEQ30gJIwIIunHIicunJ2rzK5gB2A==
1310
1404
 
1311
1405
  caseless@~0.12.0:
1312
1406
  version "0.12.0"
@@ -1342,9 +1436,9 @@ chalk@^2.0.0, chalk@^2.1.0, chalk@^2.4.1, chalk@^2.4.2:
1342
1436
  supports-color "^5.3.0"
1343
1437
 
1344
1438
  chalk@^4.0.0, chalk@^4.1.0:
1345
- version "4.1.0"
1346
- resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.0.tgz#4e14870a618d9e2edd97dd8345fd9d9dc315646a"
1347
- integrity sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==
1439
+ version "4.1.1"
1440
+ resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.1.tgz#c80b3fab28bf6371e6863325eee67e618b77e6ad"
1441
+ integrity sha512-diHzdDKxcU+bAsUboHLPEDQiw0qEe0qd7SYUn3HgcFlWgbDcfLGswOHYeGrHKzG9z6UYf01d9VFMfZxPM1xZSg==
1348
1442
  dependencies:
1349
1443
  ansi-styles "^4.1.0"
1350
1444
  supports-color "^7.1.0"
@@ -1369,10 +1463,10 @@ chardet@^0.7.0:
1369
1463
  resolved "https://registry.yarnpkg.com/chardet/-/chardet-0.7.0.tgz#90094849f0937f2eedc2425d0d28a9e5f0cbad9e"
1370
1464
  integrity sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==
1371
1465
 
1372
- chokidar@3.4.3:
1373
- version "3.4.3"
1374
- resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.4.3.tgz#c1df38231448e45ca4ac588e6c79573ba6a57d5b"
1375
- integrity sha512-DtM3g7juCXQxFVSNPNByEC2+NImtBuxQQvWlHunpJIS5Ocr0lG306cC7FCi7cEA0fzmybPUIl4txBIobk1gGOQ==
1466
+ chokidar@3.5.1:
1467
+ version "3.5.1"
1468
+ resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.5.1.tgz#ee9ce7bbebd2b79f49f304799d5468e31e14e68a"
1469
+ integrity sha512-9+s+Od+W0VJJzawDma/gvBNQqkTiqYTWLuZoyAsivsI4AaWTCzHG06/TMjsf1cYe9Cb97UCEhjz7HvnPk2p/tw==
1376
1470
  dependencies:
1377
1471
  anymatch "~3.1.1"
1378
1472
  braces "~3.0.2"
@@ -1382,7 +1476,7 @@ chokidar@3.4.3:
1382
1476
  normalize-path "~3.0.0"
1383
1477
  readdirp "~3.5.0"
1384
1478
  optionalDependencies:
1385
- fsevents "~2.1.2"
1479
+ fsevents "~2.3.1"
1386
1480
 
1387
1481
  ci-info@^2.0.0:
1388
1482
  version "2.0.0"
@@ -1429,14 +1523,23 @@ cli-width@^3.0.0:
1429
1523
  resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-3.0.0.tgz#a2f48437a2caa9a22436e794bf071ec9e61cedf6"
1430
1524
  integrity sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw==
1431
1525
 
1432
- cliui@^5.0.0:
1433
- version "5.0.0"
1434
- resolved "https://registry.yarnpkg.com/cliui/-/cliui-5.0.0.tgz#deefcfdb2e800784aa34f46fa08e06851c7bbbc5"
1435
- integrity sha512-PYeGSEmmHM6zvoef2w8TPzlrnNpXIjTipYK780YswmIP9vjxmd6Y2a3CB2Ks6/AU8NHjZugXvo8w3oWM2qnwXA==
1526
+ cliui@^7.0.2:
1527
+ version "7.0.4"
1528
+ resolved "https://registry.yarnpkg.com/cliui/-/cliui-7.0.4.tgz#a0265ee655476fc807aea9df3df8df7783808b4f"
1529
+ integrity sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==
1436
1530
  dependencies:
1437
- string-width "^3.1.0"
1438
- strip-ansi "^5.2.0"
1439
- wrap-ansi "^5.1.0"
1531
+ string-width "^4.2.0"
1532
+ strip-ansi "^6.0.0"
1533
+ wrap-ansi "^7.0.0"
1534
+
1535
+ clone-deep@^4.0.1:
1536
+ version "4.0.1"
1537
+ resolved "https://registry.yarnpkg.com/clone-deep/-/clone-deep-4.0.1.tgz#c19fd9bdbbf85942b4fd979c84dcf7d5f07c2387"
1538
+ integrity sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==
1539
+ dependencies:
1540
+ is-plain-object "^2.0.4"
1541
+ kind-of "^6.0.2"
1542
+ shallow-clone "^3.0.0"
1440
1543
 
1441
1544
  code-point-at@^1.0.0:
1442
1545
  version "1.1.0"
@@ -1472,10 +1575,10 @@ color-name@~1.1.4:
1472
1575
  resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2"
1473
1576
  integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==
1474
1577
 
1475
- colorette@^1.2.1:
1476
- version "1.2.1"
1477
- resolved "https://registry.yarnpkg.com/colorette/-/colorette-1.2.1.tgz#4d0b921325c14faf92633086a536db6e89564b1b"
1478
- integrity sha512-puCDz0CzydiSYOrnXpz/PKd69zRrribezjtE9yd4zvytoRc8+RY/KJPvtPFKZS3E3wP6neGyMe0vOTlHO5L3Pw==
1578
+ colorette@^1.2.2:
1579
+ version "1.2.2"
1580
+ resolved "https://registry.yarnpkg.com/colorette/-/colorette-1.2.2.tgz#cbcc79d5e99caea2dbf10eb3a26fd8b3e6acfa94"
1581
+ integrity sha512-MKGMzyfeuutC/ZJ1cba9NqcNpfeqMUcYmyF1ZFY6/Cn7CNSAKx6a+s48sqLqyAiZuaP2TcqMhoo+dlwFnVxT9w==
1479
1582
 
1480
1583
  combined-stream@^1.0.6, combined-stream@~1.0.6:
1481
1584
  version "1.0.8"
@@ -1506,12 +1609,12 @@ convert-source-map@^1.7.0:
1506
1609
  dependencies:
1507
1610
  safe-buffer "~5.1.1"
1508
1611
 
1509
- core-js-compat@^3.8.0:
1510
- version "3.8.3"
1511
- resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.8.3.tgz#9123fb6b9cad30f0651332dc77deba48ef9b0b3f"
1512
- integrity sha512-1sCb0wBXnBIL16pfFG1Gkvei6UzvKyTNYpiC41yrdjEv0UoJoq9E/abTMzyYJ6JpTkAj15dLjbqifIzEBDVvog==
1612
+ core-js-compat@^3.9.0, core-js-compat@^3.9.1:
1613
+ version "3.12.1"
1614
+ resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.12.1.tgz#2c302c4708505fa7072b0adb5156d26f7801a18b"
1615
+ integrity sha512-i6h5qODpw6EsHAoIdQhKoZdWn+dGBF3dSS8m5tif36RlWvW3A6+yu2S16QHUo3CrkzrnEskMAt9f8FxmY9fhWQ==
1513
1616
  dependencies:
1514
- browserslist "^4.16.1"
1617
+ browserslist "^4.16.6"
1515
1618
  semver "7.0.0"
1516
1619
 
1517
1620
  core-util-is@1.0.2:
@@ -1559,7 +1662,7 @@ cssom@~0.3.6:
1559
1662
  resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.3.8.tgz#9f1276f5b2b463f2114d3f2c75250af8c1a36f4a"
1560
1663
  integrity sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==
1561
1664
 
1562
- cssstyle@^2.2.0:
1665
+ cssstyle@^2.3.0:
1563
1666
  version "2.3.0"
1564
1667
  resolved "https://registry.yarnpkg.com/cssstyle/-/cssstyle-2.3.0.tgz#ff665a0ddbdc31864b09647f34163443d90b0852"
1565
1668
  integrity sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==
@@ -1592,31 +1695,19 @@ date-fns@^1.27.2:
1592
1695
  resolved "https://registry.yarnpkg.com/date-fns/-/date-fns-1.30.1.tgz#2e71bf0b119153dbb4cc4e88d9ea5acfb50dc05c"
1593
1696
  integrity sha512-hBSVCvSmWC+QypYObzwGOd9wqdDpOt+0wl0KbU+R+uuZBS1jN8VsD1ss3irQDknRj5NvxiTF6oj/nDRnN/UQNw==
1594
1697
 
1595
- debug@4.2.0:
1596
- version "4.2.0"
1597
- resolved "https://registry.yarnpkg.com/debug/-/debug-4.2.0.tgz#7f150f93920e94c58f5574c2fd01a3110effe7f1"
1598
- integrity sha512-IX2ncY78vDTjZMFUdmsvIRFY2Cf4FnD0wRs+nQwJU8Lu99/tPFdb0VybiiMTPe3I6rQmwsqQqRBvxU+bZ/I8sg==
1599
- dependencies:
1600
- ms "2.1.2"
1601
-
1602
- debug@^4.0.1, debug@^4.1.0, debug@^4.1.1:
1698
+ debug@4.3.1, debug@^4.0.1, debug@^4.1.0, debug@^4.1.1:
1603
1699
  version "4.3.1"
1604
1700
  resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.1.tgz#f0d229c505e0c6d8c49ac553d1b13dc183f6b2ee"
1605
1701
  integrity sha512-doEwdvm4PCeK4K3RQN2ZC2BYUBaxwLARCqZmMjtF8a51J2Rb0xpVloFRnCODwqjpwnAoao4pelN8l3RJdv3gRQ==
1606
1702
  dependencies:
1607
1703
  ms "2.1.2"
1608
1704
 
1609
- decamelize@^1.2.0:
1610
- version "1.2.0"
1611
- resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290"
1612
- integrity sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=
1613
-
1614
1705
  decamelize@^4.0.0:
1615
1706
  version "4.0.0"
1616
1707
  resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-4.0.0.tgz#aa472d7bf660eb15f3494efd531cab7f2a709837"
1617
1708
  integrity sha512-9iE1PgSik9HeIIw2JO94IidnE3eBoQrFJ3w7sFuzSX4DpmZ3v5sZpUiV5Swcf6mQEF+Y0ru8Neo+p+nyh2J+hQ==
1618
1709
 
1619
- decimal.js@^10.2.0:
1710
+ decimal.js@^10.2.1:
1620
1711
  version "10.2.1"
1621
1712
  resolved "https://registry.yarnpkg.com/decimal.js/-/decimal.js-10.2.1.tgz#238ae7b0f0c793d3e3cea410108b35a2c01426a3"
1622
1713
  integrity sha512-KaL7+6Fw6i5A2XSnsbhm/6B+NuEA7TZ4vqxnd5tXz9sbKtrN9Srj8ab4vKVdK8YAqZO9P1kg45Y6YLoduPf+kw==
@@ -1667,6 +1758,11 @@ diff@4.0.2, diff@^4.0.2:
1667
1758
  resolved "https://registry.yarnpkg.com/diff/-/diff-4.0.2.tgz#60f3aecb89d5fae520c11aa19efc2bb982aade7d"
1668
1759
  integrity sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==
1669
1760
 
1761
+ diff@5.0.0:
1762
+ version "5.0.0"
1763
+ resolved "https://registry.yarnpkg.com/diff/-/diff-5.0.0.tgz#7ed6ad76d859d030787ec35855f5b1daf31d852b"
1764
+ integrity sha512-/VTCrvm5Z0JGty/BWHljh+BAiw3IK+2j87NGMu8Nwc/f48WoDAC395uomO9ZD117ZOBaHmkX1oyLvkVM/aIT3w==
1765
+
1670
1766
  dir-glob@^3.0.1:
1671
1767
  version "3.0.1"
1672
1768
  resolved "https://registry.yarnpkg.com/dir-glob/-/dir-glob-3.0.1.tgz#56dbf73d992a4a93ba1584f4534063fd2e41717f"
@@ -1711,10 +1807,10 @@ editorconfig@0.15.3:
1711
1807
  semver "^5.6.0"
1712
1808
  sigmund "^1.0.1"
1713
1809
 
1714
- electron-to-chromium@^1.3.634:
1715
- version "1.3.645"
1716
- resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.645.tgz#c0b269ae2ecece5aedc02dd4586397d8096affb1"
1717
- integrity sha512-T7mYop3aDpRHIQaUYcmzmh6j9MAe560n6ukqjJMbVC6bVTau7dSpvB18bcsBPPtOSe10cKxhJFtlbEzLa0LL1g==
1810
+ electron-to-chromium@^1.3.723:
1811
+ version "1.3.735"
1812
+ resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.735.tgz#fa1a8660f2790662291cb2136f0e446a444cdfdc"
1813
+ integrity sha512-cp7MWzC3NseUJV2FJFgaiesdrS+A8ZUjX5fLAxdRlcaPDkaPGFplX930S5vf84yqDp4LjuLdKouWuVOTwUfqHQ==
1718
1814
 
1719
1815
  elegant-spinner@^1.0.1:
1720
1816
  version "1.0.1"
@@ -1745,25 +1841,32 @@ error-ex@^1.3.1:
1745
1841
  dependencies:
1746
1842
  is-arrayish "^0.2.1"
1747
1843
 
1748
- es-abstract@^1.18.0-next.1:
1749
- version "1.18.0-next.2"
1750
- resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.18.0-next.2.tgz#088101a55f0541f595e7e057199e27ddc8f3a5c2"
1751
- integrity sha512-Ih4ZMFHEtZupnUh6497zEL4y2+w8+1ljnCyaTa+adcoafI1GOvMwFlDjBLfWR7y9VLfrjRJe9ocuHY1PSR9jjw==
1844
+ es-abstract@^1.18.0, es-abstract@^1.18.0-next.1, es-abstract@^1.18.0-next.2:
1845
+ version "1.18.0"
1846
+ resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.18.0.tgz#ab80b359eecb7ede4c298000390bc5ac3ec7b5a4"
1847
+ integrity sha512-LJzK7MrQa8TS0ja2w3YNLzUgJCGPdPOV1yVvezjNnS89D+VR08+Szt2mz3YB2Dck/+w5tfIq/RoUAFqJJGM2yw==
1752
1848
  dependencies:
1753
1849
  call-bind "^1.0.2"
1754
1850
  es-to-primitive "^1.2.1"
1755
1851
  function-bind "^1.1.1"
1756
- get-intrinsic "^1.0.2"
1852
+ get-intrinsic "^1.1.1"
1757
1853
  has "^1.0.3"
1758
- has-symbols "^1.0.1"
1759
- is-callable "^1.2.2"
1854
+ has-symbols "^1.0.2"
1855
+ is-callable "^1.2.3"
1760
1856
  is-negative-zero "^2.0.1"
1761
- is-regex "^1.1.1"
1857
+ is-regex "^1.1.2"
1858
+ is-string "^1.0.5"
1762
1859
  object-inspect "^1.9.0"
1763
1860
  object-keys "^1.1.1"
1764
1861
  object.assign "^4.1.2"
1765
- string.prototype.trimend "^1.0.3"
1766
- string.prototype.trimstart "^1.0.3"
1862
+ string.prototype.trimend "^1.0.4"
1863
+ string.prototype.trimstart "^1.0.4"
1864
+ unbox-primitive "^1.0.0"
1865
+
1866
+ es-array-method-boxes-properly@^1.0.0:
1867
+ version "1.0.0"
1868
+ resolved "https://registry.yarnpkg.com/es-array-method-boxes-properly/-/es-array-method-boxes-properly-1.0.0.tgz#873f3e84418de4ee19c5be752990b2e44718d09e"
1869
+ integrity sha512-wd6JXUmyHmt8T5a2xreUwKcGPq6f1f+WwIJkijUqiGcJz1qqnZgP6XIK+QyIWU5lT7imeNxUll48bziG+TSYcA==
1767
1870
 
1768
1871
  es-to-primitive@^1.2.1:
1769
1872
  version "1.2.1"
@@ -1799,13 +1902,13 @@ escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5:
1799
1902
  resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4"
1800
1903
  integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=
1801
1904
 
1802
- escodegen@^1.14.1:
1803
- version "1.14.3"
1804
- resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-1.14.3.tgz#4e7b81fba61581dc97582ed78cab7f0e8d63f503"
1805
- integrity sha512-qFcX0XJkdg+PB3xjZZG/wKSuT1PnQWx57+TVSjIMmILd2yC/6ByYElPwJnslDsuWuSAp4AwJGumarAAmJch5Kw==
1905
+ escodegen@^2.0.0:
1906
+ version "2.0.0"
1907
+ resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-2.0.0.tgz#5e32b12833e8aa8fa35e1bf0befa89380484c7dd"
1908
+ integrity sha512-mmHKys/C8BFUGI+MAWNcSYoORYLMdPzjrknd2Vc+bUsjN5bXcr8EhrNB+UTqfL1y3I9c4fw2ihgtMPQLBRiQxw==
1806
1909
  dependencies:
1807
1910
  esprima "^4.0.1"
1808
- estraverse "^4.2.0"
1911
+ estraverse "^5.2.0"
1809
1912
  esutils "^2.0.2"
1810
1913
  optionator "^0.8.1"
1811
1914
  optionalDependencies:
@@ -1894,9 +1997,9 @@ esprima@^4.0.0, esprima@^4.0.1:
1894
1997
  integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==
1895
1998
 
1896
1999
  esquery@^1.0.1:
1897
- version "1.3.1"
1898
- resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.3.1.tgz#b78b5828aa8e214e29fb74c4d5b752e1c033da57"
1899
- integrity sha512-olpvt9QG0vniUBZspVRN6lwB7hOZoTRtT+jzR+tS4ffYx2mzbw+z0XCOk44aaLYKApNX5nMm+E+P6o25ip/DHQ==
2000
+ version "1.4.0"
2001
+ resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.4.0.tgz#2148ffc38b82e8c7057dfed48425b3e61f0f24a5"
2002
+ integrity sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w==
1900
2003
  dependencies:
1901
2004
  estraverse "^5.1.0"
1902
2005
 
@@ -1907,7 +2010,7 @@ esrecurse@^4.3.0:
1907
2010
  dependencies:
1908
2011
  estraverse "^5.2.0"
1909
2012
 
1910
- estraverse@^4.1.1, estraverse@^4.2.0:
2013
+ estraverse@^4.1.1:
1911
2014
  version "4.3.0"
1912
2015
  resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.3.0.tgz#398ad3f3c5a24948be7725e83d11a7de28cdbd1d"
1913
2016
  integrity sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==
@@ -1989,9 +2092,9 @@ fast-levenshtein@~2.0.6:
1989
2092
  integrity sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=
1990
2093
 
1991
2094
  fastq@^1.6.0:
1992
- version "1.10.0"
1993
- resolved "https://registry.yarnpkg.com/fastq/-/fastq-1.10.0.tgz#74dbefccade964932cdf500473ef302719c652bb"
1994
- integrity sha512-NL2Qc5L3iQEsyYzweq7qfgy5OtXCmGzGvhElGEd/SoFWEMOEczNh5s5ocaF01HDetxz+p8ecjNPA6cZxxIHmzA==
2095
+ version "1.11.0"
2096
+ resolved "https://registry.yarnpkg.com/fastq/-/fastq-1.11.0.tgz#bb9fb955a07130a918eb63c1f5161cc32a5d0858"
2097
+ integrity sha512-7Eczs8gIPDrVzT+EksYBcupqMyxSHXXrHOLRRxU2/DicV8789MRBRR8+Hc2uWzUupOs4YS4JzBmBxjjCVBxD/g==
1995
2098
  dependencies:
1996
2099
  reusify "^1.0.4"
1997
2100
 
@@ -2126,10 +2229,10 @@ fs.realpath@^1.0.0:
2126
2229
  resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f"
2127
2230
  integrity sha1-FQStJSMVjKpA20onh8sBQRmU6k8=
2128
2231
 
2129
- fsevents@~2.1.2:
2130
- version "2.1.3"
2131
- resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.1.3.tgz#fb738703ae8d2f9fe900c33836ddebee8b97f23e"
2132
- integrity sha512-Auw9a4AxqWpa9GUfj370BMPzzyncfBABW8Mab7BGWBYDj4Isgq+cDKtx0i6u9jcX9pQDnswsaaOTgTmA5pEjuQ==
2232
+ fsevents@~2.3.1:
2233
+ version "2.3.2"
2234
+ resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.2.tgz#8a526f78b8fdf4623b709e0b975c52c24c02fd1a"
2235
+ integrity sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==
2133
2236
 
2134
2237
  function-bind@^1.1.1:
2135
2238
  version "1.1.1"
@@ -2141,20 +2244,20 @@ functional-red-black-tree@^1.0.1:
2141
2244
  resolved "https://registry.yarnpkg.com/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz#1b0ab3bd553b2a0d6399d29c0e3ea0b252078327"
2142
2245
  integrity sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc=
2143
2246
 
2144
- gensync@^1.0.0-beta.1:
2247
+ gensync@^1.0.0-beta.2:
2145
2248
  version "1.0.0-beta.2"
2146
2249
  resolved "https://registry.yarnpkg.com/gensync/-/gensync-1.0.0-beta.2.tgz#32a6ee76c3d7f52d46b2b1ae5d93fea8580a25e0"
2147
2250
  integrity sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==
2148
2251
 
2149
- get-caller-file@^2.0.1:
2252
+ get-caller-file@^2.0.5:
2150
2253
  version "2.0.5"
2151
2254
  resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e"
2152
2255
  integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==
2153
2256
 
2154
- get-intrinsic@^1.0.2:
2155
- version "1.1.0"
2156
- resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.1.0.tgz#892e62931e6938c8a23ea5aaebcfb67bd97da97e"
2157
- integrity sha512-M11rgtQp5GZMZzDL7jLTNxbDfurpzuau5uqRWDPvlHjfvg3TdScAZo96GLvhMjImrmR8uAt0FS2RLoMrfWGKlg==
2257
+ get-intrinsic@^1.0.2, get-intrinsic@^1.1.1:
2258
+ version "1.1.1"
2259
+ resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.1.1.tgz#15f59f376f855c446963948f0d24cd3637b4abc6"
2260
+ integrity sha512-kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q==
2158
2261
  dependencies:
2159
2262
  function-bind "^1.1.1"
2160
2263
  has "^1.0.3"
@@ -2192,13 +2295,13 @@ getpass@^0.1.1:
2192
2295
  assert-plus "^1.0.0"
2193
2296
 
2194
2297
  glob-parent@^5.0.0, glob-parent@^5.1.0, glob-parent@~5.1.0:
2195
- version "5.1.1"
2196
- resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.1.tgz#b6c1ef417c4e5663ea498f1c45afac6916bbc229"
2197
- integrity sha512-FnI+VGOpnlGHWZxthPGR+QhR78fuiK0sNLkHQv+bL9fQi57lNNdquIbna/WrfROrolq8GK5Ek6BiMwqL/voRYQ==
2298
+ version "5.1.2"
2299
+ resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4"
2300
+ integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==
2198
2301
  dependencies:
2199
2302
  is-glob "^4.0.1"
2200
2303
 
2201
- glob@7.1.6, glob@^7.0.3, glob@^7.1.3, glob@^7.1.4:
2304
+ glob@7.1.6:
2202
2305
  version "7.1.6"
2203
2306
  resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.6.tgz#141f33b81a7c2492e125594307480c46679278a6"
2204
2307
  integrity sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==
@@ -2210,6 +2313,18 @@ glob@7.1.6, glob@^7.0.3, glob@^7.1.3, glob@^7.1.4:
2210
2313
  once "^1.3.0"
2211
2314
  path-is-absolute "^1.0.0"
2212
2315
 
2316
+ glob@^7.0.3, glob@^7.1.3, glob@^7.1.4:
2317
+ version "7.1.7"
2318
+ resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.7.tgz#3b193e9233f01d42d0b3f78294bbeeb418f94a90"
2319
+ integrity sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ==
2320
+ dependencies:
2321
+ fs.realpath "^1.0.0"
2322
+ inflight "^1.0.4"
2323
+ inherits "2"
2324
+ minimatch "^3.0.4"
2325
+ once "^1.3.0"
2326
+ path-is-absolute "^1.0.0"
2327
+
2213
2328
  globals@^11.1.0:
2214
2329
  version "11.12.0"
2215
2330
  resolved "https://registry.yarnpkg.com/globals/-/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e"
@@ -2248,9 +2363,9 @@ globby@^10.0.1:
2248
2363
  slash "^3.0.0"
2249
2364
 
2250
2365
  graceful-fs@^4.2.2:
2251
- version "4.2.4"
2252
- resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.4.tgz#2256bde14d3632958c465ebc96dc467ca07a29fb"
2253
- integrity sha512-WjKPNJF79dtJAVniUlGGWHYGz2jWxT6VhN/4m1NdkbZ2nOsEF+cI1Edgql5zCRhs/VsQYRvrXctxktVXZUkixw==
2366
+ version "4.2.6"
2367
+ resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.6.tgz#ff040b2b0853b23c3d31027523706f1885d76bee"
2368
+ integrity sha512-nTnJ528pbqxYanhpDYsi4Rd8MAeaBA67+RZ10CM1m3bTAVFEDcd5AuA4a6W5YkGZ1iNXHzZz8T6TBKLeBuNriQ==
2254
2369
 
2255
2370
  graphql@14.6.0:
2256
2371
  version "14.6.0"
@@ -2265,9 +2380,9 @@ growl@1.10.5:
2265
2380
  integrity sha512-qBr4OuELkhPenW6goKVXiv47US3clb3/IbuWF9KNKEijAy9oeHxU9IgzjvJhHkUzhaj7rOUD7+YGWqUjLp5oSA==
2266
2381
 
2267
2382
  handlebars@^4.0.13:
2268
- version "4.7.6"
2269
- resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.7.6.tgz#d4c05c1baf90e9945f77aa68a7a219aa4a7df74e"
2270
- integrity sha512-1f2BACcBfiwAfStCKZNrUCgqNZkGsAT7UM3kkYtXuLo0KnaVfjKOyf7PRzB6++aK9STyT1Pd2ZCPe3EGOXleXA==
2383
+ version "4.7.7"
2384
+ resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.7.7.tgz#9ce33416aad02dbd6c8fafa8240d5d98004945a1"
2385
+ integrity sha512-aAcXm5OAfE/8IXkcZvCepKU3VzW1/39Fb5ZuqMtgI/hT8X2YgoMvBY5dLhq/cpOvw7Lk1nK/UF71aLG/ZnVYRA==
2271
2386
  dependencies:
2272
2387
  minimist "^1.2.5"
2273
2388
  neo-async "^2.6.0"
@@ -2296,6 +2411,11 @@ has-ansi@^2.0.0:
2296
2411
  dependencies:
2297
2412
  ansi-regex "^2.0.0"
2298
2413
 
2414
+ has-bigints@^1.0.1:
2415
+ version "1.0.1"
2416
+ resolved "https://registry.yarnpkg.com/has-bigints/-/has-bigints-1.0.1.tgz#64fe6acb020673e3b78db035a5af69aa9d07b113"
2417
+ integrity sha512-LSBS2LjbNBTf6287JEbEzvJgftkF5qFkmCo9hDRpAzKhUOlJ+hx8dd4USs00SgsUNwc4617J9ki5YtEClM2ffA==
2418
+
2299
2419
  has-flag@^1.0.0:
2300
2420
  version "1.0.0"
2301
2421
  resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa"
@@ -2311,10 +2431,10 @@ has-flag@^4.0.0:
2311
2431
  resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b"
2312
2432
  integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==
2313
2433
 
2314
- has-symbols@^1.0.1:
2315
- version "1.0.1"
2316
- resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.1.tgz#9f5214758a44196c406d9bd76cebf81ec2dd31e8"
2317
- integrity sha512-PLcsoqu++dmEIZB+6totNFKq/7Do+Z0u4oT0zKOJNl3lYK6vGwwu2hjHs+68OEZbTjiUE9bgOABXbP/GvrS0Kg==
2434
+ has-symbols@^1.0.1, has-symbols@^1.0.2:
2435
+ version "1.0.2"
2436
+ resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.2.tgz#165d3070c00309752a1236a479331e3ac56f1423"
2437
+ integrity sha512-chXa79rL/UC2KlX17jo3vRGz0azaWEx5tGqZg5pO3NUyEJVB17dMruQlzCCOfUvElghKcm5194+BCRvi2Rv/Gw==
2318
2438
 
2319
2439
  has@^1.0.3:
2320
2440
  version "1.0.3"
@@ -2449,11 +2569,6 @@ inquirer@^7.0.0:
2449
2569
  strip-ansi "^6.0.0"
2450
2570
  through "^2.3.6"
2451
2571
 
2452
- ip-regex@^2.1.0:
2453
- version "2.1.0"
2454
- resolved "https://registry.yarnpkg.com/ip-regex/-/ip-regex-2.1.0.tgz#fa78bf5d2e6913c911ce9f819ee5146bb6d844e9"
2455
- integrity sha1-+ni/XS5pE8kRzp+BnuUUa7bYROk=
2456
-
2457
2572
  is-alphabetical@^1.0.0:
2458
2573
  version "1.0.4"
2459
2574
  resolved "https://registry.yarnpkg.com/is-alphabetical/-/is-alphabetical-1.0.4.tgz#9e7d6b94916be22153745d184c298cbf986a686d"
@@ -2479,6 +2594,11 @@ is-arrayish@^0.2.1:
2479
2594
  resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d"
2480
2595
  integrity sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=
2481
2596
 
2597
+ is-bigint@^1.0.1:
2598
+ version "1.0.2"
2599
+ resolved "https://registry.yarnpkg.com/is-bigint/-/is-bigint-1.0.2.tgz#ffb381442503235ad245ea89e45b3dbff040ee5a"
2600
+ integrity sha512-0JV5+SOCQkIdzjBK9buARcV804Ddu7A0Qet6sHi3FimE9ne6m4BGQZfRn+NZiXbBk4F4XmHfDZIipLj9pX8dSA==
2601
+
2482
2602
  is-binary-path@~2.1.0:
2483
2603
  version "2.1.0"
2484
2604
  resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-2.1.0.tgz#ea1f7f3b80f064236e83470f86c09c254fb45b09"
@@ -2486,15 +2606,22 @@ is-binary-path@~2.1.0:
2486
2606
  dependencies:
2487
2607
  binary-extensions "^2.0.0"
2488
2608
 
2609
+ is-boolean-object@^1.1.0:
2610
+ version "1.1.1"
2611
+ resolved "https://registry.yarnpkg.com/is-boolean-object/-/is-boolean-object-1.1.1.tgz#3c0878f035cb821228d350d2e1e36719716a3de8"
2612
+ integrity sha512-bXdQWkECBUIAcCkeH1unwJLIpZYaa5VvuygSyS/c2lf719mTKZDU5UdDRlpd01UjADgmW8RfqaP+mRaVPdr/Ng==
2613
+ dependencies:
2614
+ call-bind "^1.0.2"
2615
+
2489
2616
  is-buffer@^2.0.0:
2490
2617
  version "2.0.5"
2491
2618
  resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-2.0.5.tgz#ebc252e400d22ff8d77fa09888821a24a658c191"
2492
2619
  integrity sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ==
2493
2620
 
2494
- is-callable@^1.1.4, is-callable@^1.2.2:
2495
- version "1.2.2"
2496
- resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.2.tgz#c7c6715cd22d4ddb48d3e19970223aceabb080d9"
2497
- integrity sha512-dnMqspv5nU3LoewK2N/y7KLtxtakvTuaCsU9FU50/QDmdbHNy/4/JuRtMHqRU22o3q+W89YQndQEeCVwK+3qrA==
2621
+ is-callable@^1.1.4, is-callable@^1.2.3:
2622
+ version "1.2.3"
2623
+ resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.3.tgz#8b1e0500b73a1d76c70487636f368e519de8db8e"
2624
+ integrity sha512-J1DcMe8UYTBSrKezuIUTUwjXsho29693unXM2YhJUTR2txK/eG47bvNa/wipPFmZFgr/N6f1GA66dv0mEyTIyQ==
2498
2625
 
2499
2626
  is-ci@2.0.0:
2500
2627
  version "2.0.0"
@@ -2503,10 +2630,17 @@ is-ci@2.0.0:
2503
2630
  dependencies:
2504
2631
  ci-info "^2.0.0"
2505
2632
 
2633
+ is-core-module@^2.2.0:
2634
+ version "2.4.0"
2635
+ resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.4.0.tgz#8e9fc8e15027b011418026e98f0e6f4d86305cc1"
2636
+ integrity sha512-6A2fkfq1rfeQZjxrZJGerpLCTHRNEBiSgnu0+obeJpEPZRUooHgsizvzv0ZjJwOz3iWIHdJtVWJ/tmPr3D21/A==
2637
+ dependencies:
2638
+ has "^1.0.3"
2639
+
2506
2640
  is-date-object@^1.0.1:
2507
- version "1.0.2"
2508
- resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.2.tgz#bda736f2cd8fd06d32844e7743bfa7494c3bfd7e"
2509
- integrity sha512-USlDT524woQ08aoZFzh3/Z6ch9Y/EWXEHQ/AaRN0SkKq4t2Jw2R2339tSXmwuVoY7LLlBCbOIlx2myP/L5zk0g==
2641
+ version "1.0.4"
2642
+ resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.4.tgz#550cfcc03afada05eea3dd30981c7b09551f73e5"
2643
+ integrity sha512-/b4ZVsG7Z5XVtIxs/h9W8nvfLgSAyKYdtGWQLbqy6jA1icmgjf8WCoTKgeS4wy5tYaPePouzFMANbnj94c2Z+A==
2510
2644
 
2511
2645
  is-decimal@^1.0.0:
2512
2646
  version "1.0.4"
@@ -2541,9 +2675,9 @@ is-fullwidth-code-point@^3.0.0:
2541
2675
  integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==
2542
2676
 
2543
2677
  is-generator-function@^1.0.7:
2544
- version "1.0.8"
2545
- resolved "https://registry.yarnpkg.com/is-generator-function/-/is-generator-function-1.0.8.tgz#dfb5c2b120e02b0a8d9d2c6806cd5621aa922f7b"
2546
- integrity sha512-2Omr/twNtufVZFr1GhxjOMFPAj2sjc/dKaIqBhvo4qciXfJmITGH6ZGd8eZYNHza8t1y0e01AuqRhJwfWp26WQ==
2678
+ version "1.0.9"
2679
+ resolved "https://registry.yarnpkg.com/is-generator-function/-/is-generator-function-1.0.9.tgz#e5f82c2323673e7fcad3d12858c83c4039f6399c"
2680
+ integrity sha512-ZJ34p1uvIfptHCN7sFTjGibB9/oBg17sHqzDLfuwhvmN/qLVvIQXRQ8licZQ35WJ8KuEQt/etnnzQFI9C9Ue/A==
2547
2681
 
2548
2682
  is-glob@^4.0.0, is-glob@^4.0.1, is-glob@~4.0.1:
2549
2683
  version "4.0.1"
@@ -2570,6 +2704,11 @@ is-negative-zero@^2.0.1:
2570
2704
  resolved "https://registry.yarnpkg.com/is-negative-zero/-/is-negative-zero-2.0.1.tgz#3de746c18dda2319241a53675908d8f766f11c24"
2571
2705
  integrity sha512-2z6JzQvZRa9A2Y7xC6dQQm4FSTSTNWjKIYYTt4246eMTJmIo0Q+ZyOsU66X8lxK1AbB92dFeglPLrhwpeRKO6w==
2572
2706
 
2707
+ is-number-object@^1.0.4:
2708
+ version "1.0.5"
2709
+ resolved "https://registry.yarnpkg.com/is-number-object/-/is-number-object-1.0.5.tgz#6edfaeed7950cff19afedce9fbfca9ee6dd289eb"
2710
+ integrity sha512-RU0lI/n95pMoUKu9v1BZP5MBcZuNSVJkMkAG2dJqC4z2GlkGUNeH68SuHuBKBD/XFe+LHZ+f9BKkLET60Niedw==
2711
+
2573
2712
  is-number@^7.0.0:
2574
2713
  version "7.0.0"
2575
2714
  resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b"
@@ -2593,31 +2732,39 @@ is-path-cwd@^2.2.0:
2593
2732
  integrity sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ==
2594
2733
 
2595
2734
  is-path-inside@^3.0.1:
2596
- version "3.0.2"
2597
- resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-3.0.2.tgz#f5220fc82a3e233757291dddc9c5877f2a1f3017"
2598
- integrity sha512-/2UGPSgmtqwo1ktx8NDHjuPwZWmHhO+gj0f93EkhLB5RgW9RZevWYYlIkS6zePc6U2WpOdQYIwHe9YC4DWEBVg==
2735
+ version "3.0.3"
2736
+ resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-3.0.3.tgz#d231362e53a07ff2b0e0ea7fed049161ffd16283"
2737
+ integrity sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==
2599
2738
 
2600
2739
  is-plain-obj@^2.0.0, is-plain-obj@^2.1.0:
2601
2740
  version "2.1.0"
2602
2741
  resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-2.1.0.tgz#45e42e37fccf1f40da8e5f76ee21515840c09287"
2603
2742
  integrity sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==
2604
2743
 
2744
+ is-plain-object@^2.0.4:
2745
+ version "2.0.4"
2746
+ resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-2.0.4.tgz#2c163b3fafb1b606d9d17928f05c2a1c38e07677"
2747
+ integrity sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==
2748
+ dependencies:
2749
+ isobject "^3.0.1"
2750
+
2605
2751
  is-potential-custom-element-name@^1.0.0:
2606
- version "1.0.0"
2607
- resolved "https://registry.yarnpkg.com/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.0.tgz#0c52e54bcca391bb2c494b21e8626d7336c6e397"
2608
- integrity sha1-DFLlS8yjkbssSUsh6GJtczbG45c=
2752
+ version "1.0.1"
2753
+ resolved "https://registry.yarnpkg.com/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.1.tgz#171ed6f19e3ac554394edf78caa05784a45bebb5"
2754
+ integrity sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==
2609
2755
 
2610
2756
  is-promise@^2.1.0:
2611
2757
  version "2.2.2"
2612
2758
  resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-2.2.2.tgz#39ab959ccbf9a774cf079f7b40c7a26f763135f1"
2613
2759
  integrity sha512-+lP4/6lKUBfQjZ2pdxThZvLUAafmZb8OAxFb8XXtiQmS35INgr85hdOGoEs124ez1FCnZJt6jau/T+alh58QFQ==
2614
2760
 
2615
- is-regex@^1.1.1:
2616
- version "1.1.1"
2617
- resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.1.1.tgz#c6f98aacc546f6cec5468a07b7b153ab564a57b9"
2618
- integrity sha512-1+QkEcxiLlB7VEyFtyBg94e08OAsvq7FUBgApTq/w2ymCLyKJgDPsybBENVtA7XCQEgEXxKPonG+mvYRxh/LIg==
2761
+ is-regex@^1.1.2:
2762
+ version "1.1.3"
2763
+ resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.1.3.tgz#d029f9aff6448b93ebbe3f33dac71511fdcbef9f"
2764
+ integrity sha512-qSVXFz28HM7y+IWX6vLCsexdlvzT1PJNFSBuaQLQ5o0IEw8UDYW6/2+eCMVyIsbM8CNLX2a/QWmSpyxYEHY7CQ==
2619
2765
  dependencies:
2620
- has-symbols "^1.0.1"
2766
+ call-bind "^1.0.2"
2767
+ has-symbols "^1.0.2"
2621
2768
 
2622
2769
  is-regexp@^1.0.0:
2623
2770
  version "1.0.0"
@@ -2634,21 +2781,26 @@ is-stream@^2.0.0:
2634
2781
  resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-2.0.0.tgz#bde9c32680d6fae04129d6ac9d921ce7815f78e3"
2635
2782
  integrity sha512-XCoy+WlUr7d1+Z8GgSuXmpuUFC9fOhRXglJMx+dwLKTkL44Cjd4W1Z5P+BQZpr+cR93aGP4S/s7Ftw6Nd/kiEw==
2636
2783
 
2637
- is-symbol@^1.0.2:
2638
- version "1.0.3"
2639
- resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.3.tgz#38e1014b9e6329be0de9d24a414fd7441ec61937"
2640
- integrity sha512-OwijhaRSgqvhm/0ZdAcXNZt9lYdKFpcRDT5ULUuYXPoT794UNOdU+gpT6Rzo7b4V2HUl/op6GqY894AZwv9faQ==
2784
+ is-string@^1.0.5:
2785
+ version "1.0.6"
2786
+ resolved "https://registry.yarnpkg.com/is-string/-/is-string-1.0.6.tgz#3fe5d5992fb0d93404f32584d4b0179a71b54a5f"
2787
+ integrity sha512-2gdzbKUuqtQ3lYNrUTQYoClPhm7oQu4UdpSZMp1/DGgkHBT8E2Z1l0yMdb6D4zNAxwDiMv8MdulKROJGNl0Q0w==
2788
+
2789
+ is-symbol@^1.0.2, is-symbol@^1.0.3:
2790
+ version "1.0.4"
2791
+ resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.4.tgz#a6dac93b635b063ca6872236de88910a57af139c"
2792
+ integrity sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==
2641
2793
  dependencies:
2642
- has-symbols "^1.0.1"
2794
+ has-symbols "^1.0.2"
2643
2795
 
2644
2796
  is-typed-array@^1.1.3:
2645
- version "1.1.4"
2646
- resolved "https://registry.yarnpkg.com/is-typed-array/-/is-typed-array-1.1.4.tgz#1f66f34a283a3c94a4335434661ca53fff801120"
2647
- integrity sha512-ILaRgn4zaSrVNXNGtON6iFNotXW3hAPF3+0fB1usg2jFlWqo5fEDdmJkz0zBfoi7Dgskr8Khi2xZ8cXqZEfXNA==
2797
+ version "1.1.5"
2798
+ resolved "https://registry.yarnpkg.com/is-typed-array/-/is-typed-array-1.1.5.tgz#f32e6e096455e329eb7b423862456aa213f0eb4e"
2799
+ integrity sha512-S+GRDgJlR3PyEbsX/Fobd9cqpZBuvUS+8asRqYDMLCb2qMzt1oz5m5oxQCxOgUDxiWsOVNi4yaF+/uvdlHlYug==
2648
2800
  dependencies:
2649
2801
  available-typed-arrays "^1.0.2"
2650
- call-bind "^1.0.0"
2651
- es-abstract "^1.18.0-next.1"
2802
+ call-bind "^1.0.2"
2803
+ es-abstract "^1.18.0-next.2"
2652
2804
  foreach "^2.0.5"
2653
2805
  has-symbols "^1.0.1"
2654
2806
 
@@ -2672,6 +2824,11 @@ isexe@^2.0.0:
2672
2824
  resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10"
2673
2825
  integrity sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=
2674
2826
 
2827
+ isobject@^3.0.1:
2828
+ version "3.0.1"
2829
+ resolved "https://registry.yarnpkg.com/isobject/-/isobject-3.0.1.tgz#4e431e92b11a9731636aa1f9c8d1ccbcfdab78df"
2830
+ integrity sha1-TkMekrEalzFjaqH5yNHMvP2reN8=
2831
+
2675
2832
  isstream@~0.1.2:
2676
2833
  version "0.1.2"
2677
2834
  resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a"
@@ -2699,13 +2856,12 @@ js-tokens@^4.0.0:
2699
2856
  resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499"
2700
2857
  integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==
2701
2858
 
2702
- js-yaml@3.14.0:
2703
- version "3.14.0"
2704
- resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.14.0.tgz#a7a34170f26a21bb162424d8adacb4113a69e482"
2705
- integrity sha512-/4IbIeHcD9VMHFqDR/gQ7EdZdLimOvW2DdcxFjdyyZ9NsbS+ccrXqVWDtab/lRl5AlUqmpBx8EhPaWR+OtY17A==
2859
+ js-yaml@4.0.0:
2860
+ version "4.0.0"
2861
+ resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-4.0.0.tgz#f426bc0ff4b4051926cd588c71113183409a121f"
2862
+ integrity sha512-pqon0s+4ScYUvX30wxQi3PogGFAlUyH0awepWvwkj4jD4v+ova3RiYw8bmA6x2rDrEaj8i/oWKoRxpVNW+Re8Q==
2706
2863
  dependencies:
2707
- argparse "^1.0.7"
2708
- esprima "^4.0.0"
2864
+ argparse "^2.0.1"
2709
2865
 
2710
2866
  js-yaml@^3.13.1:
2711
2867
  version "3.14.1"
@@ -2720,36 +2876,41 @@ jsbn@~0.1.0:
2720
2876
  resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513"
2721
2877
  integrity sha1-peZUwuWi3rXyAdls77yoDA7y9RM=
2722
2878
 
2879
+ jsdom-global@^3.0.2:
2880
+ version "3.0.2"
2881
+ resolved "https://registry.yarnpkg.com/jsdom-global/-/jsdom-global-3.0.2.tgz#6bd299c13b0c4626b2da2c0393cd4385d606acb9"
2882
+ integrity sha1-a9KZwTsMRiay2iwDk81DhdYGrLk=
2883
+
2723
2884
  jsdom@^16.0.1:
2724
- version "16.4.0"
2725
- resolved "https://registry.yarnpkg.com/jsdom/-/jsdom-16.4.0.tgz#36005bde2d136f73eee1a830c6d45e55408edddb"
2726
- integrity sha512-lYMm3wYdgPhrl7pDcRmvzPhhrGVBeVhPIqeHjzeiHN3DFmD1RBpbExbi8vU7BJdH8VAZYovR8DMt0PNNDM7k8w==
2885
+ version "16.5.3"
2886
+ resolved "https://registry.yarnpkg.com/jsdom/-/jsdom-16.5.3.tgz#13a755b3950eb938b4482c407238ddf16f0d2136"
2887
+ integrity sha512-Qj1H+PEvUsOtdPJ056ewXM4UJPCi4hhLA8wpiz9F2YvsRBhuFsXxtrIFAgGBDynQA9isAMGE91PfUYbdMPXuTA==
2727
2888
  dependencies:
2728
- abab "^2.0.3"
2729
- acorn "^7.1.1"
2889
+ abab "^2.0.5"
2890
+ acorn "^8.1.0"
2730
2891
  acorn-globals "^6.0.0"
2731
2892
  cssom "^0.4.4"
2732
- cssstyle "^2.2.0"
2893
+ cssstyle "^2.3.0"
2733
2894
  data-urls "^2.0.0"
2734
- decimal.js "^10.2.0"
2895
+ decimal.js "^10.2.1"
2735
2896
  domexception "^2.0.1"
2736
- escodegen "^1.14.1"
2897
+ escodegen "^2.0.0"
2737
2898
  html-encoding-sniffer "^2.0.1"
2738
2899
  is-potential-custom-element-name "^1.0.0"
2739
2900
  nwsapi "^2.2.0"
2740
- parse5 "5.1.1"
2901
+ parse5 "6.0.1"
2741
2902
  request "^2.88.2"
2742
- request-promise-native "^1.0.8"
2743
- saxes "^5.0.0"
2903
+ request-promise-native "^1.0.9"
2904
+ saxes "^5.0.1"
2744
2905
  symbol-tree "^3.2.4"
2745
- tough-cookie "^3.0.1"
2906
+ tough-cookie "^4.0.0"
2746
2907
  w3c-hr-time "^1.0.2"
2747
2908
  w3c-xmlserializer "^2.0.0"
2748
2909
  webidl-conversions "^6.1.0"
2749
2910
  whatwg-encoding "^1.0.5"
2750
2911
  whatwg-mimetype "^2.3.0"
2751
- whatwg-url "^8.0.0"
2752
- ws "^7.2.3"
2912
+ whatwg-url "^8.5.0"
2913
+ ws "^7.4.4"
2753
2914
  xml-name-validator "^3.0.0"
2754
2915
 
2755
2916
  jsesc@^2.5.1:
@@ -2795,9 +2956,9 @@ json-stringify-safe@~5.0.1:
2795
2956
  integrity sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus=
2796
2957
 
2797
2958
  json5@^2.1.2:
2798
- version "2.1.3"
2799
- resolved "https://registry.yarnpkg.com/json5/-/json5-2.1.3.tgz#c9b0f7fa9233bfe5807fe66fcf3a5617ed597d43"
2800
- integrity sha512-KXPvOm8K9IJKFM0bmdn8QXh7udDh1g/giieX0NLCaMnb4hEiVFqnop2ImTXCc5e0/oHz3LTqmHGtExn5hfMkOA==
2959
+ version "2.2.0"
2960
+ resolved "https://registry.yarnpkg.com/json5/-/json5-2.2.0.tgz#2dfefe720c6ba525d9ebd909950f0515316c89a3"
2961
+ integrity sha512-f+8cldu7X/y7RAJurMEJmdoKXGB/X550w2Nr3tTbezL6RwEE/iMcm+tZnXeoZtKuOq6ft8+CqzEkrIgx1fPoQA==
2801
2962
  dependencies:
2802
2963
  minimist "^1.2.5"
2803
2964
 
@@ -2816,6 +2977,11 @@ jsprim@^1.2.2:
2816
2977
  json-schema "0.2.3"
2817
2978
  verror "1.10.0"
2818
2979
 
2980
+ kind-of@^6.0.2:
2981
+ version "6.0.3"
2982
+ resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.3.tgz#07c05034a6c349fa06e24fa35aa76db4580ce4dd"
2983
+ integrity sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==
2984
+
2819
2985
  leven@3.1.0:
2820
2986
  version "3.1.0"
2821
2987
  resolved "https://registry.yarnpkg.com/leven/-/leven-3.1.0.tgz#77891de834064cccba82ae7842bb6b14a13ed7f2"
@@ -2930,10 +3096,10 @@ locate-path@^6.0.0:
2930
3096
  dependencies:
2931
3097
  p-locate "^5.0.0"
2932
3098
 
2933
- lodash.sortby@^4.7.0:
2934
- version "4.7.0"
2935
- resolved "https://registry.yarnpkg.com/lodash.sortby/-/lodash.sortby-4.7.0.tgz#edd14c824e2cc9c1e0b0a1b42bb5210516a42438"
2936
- integrity sha1-7dFMgk4sycHgsKG0K7UhBRakJDg=
3099
+ lodash.debounce@^4.0.8:
3100
+ version "4.0.8"
3101
+ resolved "https://registry.yarnpkg.com/lodash.debounce/-/lodash.debounce-4.0.8.tgz#82d79bff30a67c4005ffd5e2515300ad9ca4d7af"
3102
+ integrity sha1-gteb/zCmfEAF/9XiUVMArZyk168=
2937
3103
 
2938
3104
  lodash.unescape@4.0.1:
2939
3105
  version "4.0.1"
@@ -2945,10 +3111,10 @@ lodash.uniqby@4.7.0:
2945
3111
  resolved "https://registry.yarnpkg.com/lodash.uniqby/-/lodash.uniqby-4.7.0.tgz#d99c07a669e9e6d24e1362dfe266c67616af1302"
2946
3112
  integrity sha1-2ZwHpmnp5tJOE2Lf4mbGdhavEwI=
2947
3113
 
2948
- lodash@^4.17.14, lodash@^4.17.19:
2949
- version "4.17.20"
2950
- resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.20.tgz#b44a9b6297bcb698f1c51a3545a2b3b368d59c52"
2951
- integrity sha512-PlhdFcillOINfeV7Ni6oF1TAEayyZBoZ8bcshTHqOYJYlrqzRK5hagpagky5o4HfCzzd1TRkXPMFq6cKk9rGmA==
3114
+ lodash@^4.17.14, lodash@^4.17.19, lodash@^4.7.0:
3115
+ version "4.17.21"
3116
+ resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c"
3117
+ integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==
2952
3118
 
2953
3119
  log-symbols@4.0.0:
2954
3120
  version "4.0.0"
@@ -3028,24 +3194,24 @@ merge2@^1.2.3, merge2@^1.3.0:
3028
3194
  integrity sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==
3029
3195
 
3030
3196
  micromatch@^4.0.2:
3031
- version "4.0.2"
3032
- resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.2.tgz#4fcb0999bf9fbc2fcbdd212f6d629b9a56c39259"
3033
- integrity sha512-y7FpHSbMUMoyPbYUSzO6PaZ6FyRnQOpHuKwbo1G+Knck95XVU4QAiKdGEnj5wwoS7PlOgthX/09u5iFJ+aYf5Q==
3197
+ version "4.0.4"
3198
+ resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.4.tgz#896d519dfe9db25fce94ceb7a500919bf881ebf9"
3199
+ integrity sha512-pRmzw/XUcwXGpD9aI9q/0XOwLNygjETJ8y0ao0wdqprrzDa4YnxLcz7fQRZr8voh8V10kGhABbNcHVk5wHgWwg==
3034
3200
  dependencies:
3035
3201
  braces "^3.0.1"
3036
- picomatch "^2.0.5"
3202
+ picomatch "^2.2.3"
3037
3203
 
3038
- mime-db@1.45.0:
3039
- version "1.45.0"
3040
- resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.45.0.tgz#cceeda21ccd7c3a745eba2decd55d4b73e7879ea"
3041
- integrity sha512-CkqLUxUk15hofLoLyljJSrukZi8mAtgd+yE5uO4tqRZsdsAJKv0O+rFMhVDRJgozy+yG6md5KwuXhD4ocIoP+w==
3204
+ mime-db@1.47.0:
3205
+ version "1.47.0"
3206
+ resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.47.0.tgz#8cb313e59965d3c05cfbf898915a267af46a335c"
3207
+ integrity sha512-QBmA/G2y+IfeS4oktet3qRZ+P5kPhCKRXxXnQEudYqUaEioAU1/Lq2us3D/t1Jfo4hE9REQPrbB7K5sOczJVIw==
3042
3208
 
3043
3209
  mime-types@^2.1.12, mime-types@~2.1.19:
3044
- version "2.1.28"
3045
- resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.28.tgz#1160c4757eab2c5363888e005273ecf79d2a0ecd"
3046
- integrity sha512-0TO2yJ5YHYr7M2zzT7gDU1tbwHxEUWBCLt0lscSNpcdAfFyJOVEpRYNS7EXVcTLNj/25QO8gulHC5JtTzSE2UQ==
3210
+ version "2.1.30"
3211
+ resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.30.tgz#6e7be8b4c479825f85ed6326695db73f9305d62d"
3212
+ integrity sha512-crmjA4bLtR8m9qLpHvgxSChT+XoSlZi8J4n/aIdn3z92e/U47Z0V/yl+Wh9W046GgFVAmoNR/fmdbZYcSSIUeg==
3047
3213
  dependencies:
3048
- mime-db "1.45.0"
3214
+ mime-db "1.47.0"
3049
3215
 
3050
3216
  mimic-fn@^1.0.0:
3051
3217
  version "1.2.0"
@@ -3077,34 +3243,34 @@ mkdirp@^0.5.1:
3077
3243
  minimist "^1.2.5"
3078
3244
 
3079
3245
  mocha@^8.0.1:
3080
- version "8.2.1"
3081
- resolved "https://registry.yarnpkg.com/mocha/-/mocha-8.2.1.tgz#f2fa68817ed0e53343d989df65ccd358bc3a4b39"
3082
- integrity sha512-cuLBVfyFfFqbNR0uUKbDGXKGk+UDFe6aR4os78XIrMQpZl/nv7JYHcvP5MFIAb374b2zFXsdgEGwmzMtP0Xg8w==
3246
+ version "8.4.0"
3247
+ resolved "https://registry.yarnpkg.com/mocha/-/mocha-8.4.0.tgz#677be88bf15980a3cae03a73e10a0fc3997f0cff"
3248
+ integrity sha512-hJaO0mwDXmZS4ghXsvPVriOhsxQ7ofcpQdm8dE+jISUOKopitvnXFQmpRR7jd2K6VBG6E26gU3IAbXXGIbu4sQ==
3083
3249
  dependencies:
3084
3250
  "@ungap/promise-all-settled" "1.1.2"
3085
3251
  ansi-colors "4.1.1"
3086
3252
  browser-stdout "1.3.1"
3087
- chokidar "3.4.3"
3088
- debug "4.2.0"
3089
- diff "4.0.2"
3253
+ chokidar "3.5.1"
3254
+ debug "4.3.1"
3255
+ diff "5.0.0"
3090
3256
  escape-string-regexp "4.0.0"
3091
3257
  find-up "5.0.0"
3092
3258
  glob "7.1.6"
3093
3259
  growl "1.10.5"
3094
3260
  he "1.2.0"
3095
- js-yaml "3.14.0"
3261
+ js-yaml "4.0.0"
3096
3262
  log-symbols "4.0.0"
3097
3263
  minimatch "3.0.4"
3098
- ms "2.1.2"
3099
- nanoid "3.1.12"
3264
+ ms "2.1.3"
3265
+ nanoid "3.1.20"
3100
3266
  serialize-javascript "5.0.1"
3101
3267
  strip-json-comments "3.1.1"
3102
- supports-color "7.2.0"
3268
+ supports-color "8.1.1"
3103
3269
  which "2.0.2"
3104
3270
  wide-align "1.1.3"
3105
- workerpool "6.0.2"
3106
- yargs "13.3.2"
3107
- yargs-parser "13.1.2"
3271
+ workerpool "6.1.0"
3272
+ yargs "16.2.0"
3273
+ yargs-parser "20.2.4"
3108
3274
  yargs-unparser "2.0.0"
3109
3275
 
3110
3276
  morphdom@^2.6.1:
@@ -3122,6 +3288,11 @@ ms@2.1.2:
3122
3288
  resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009"
3123
3289
  integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==
3124
3290
 
3291
+ ms@2.1.3:
3292
+ version "2.1.3"
3293
+ resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2"
3294
+ integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==
3295
+
3125
3296
  multimatch@^3.0.0:
3126
3297
  version "3.0.0"
3127
3298
  resolved "https://registry.yarnpkg.com/multimatch/-/multimatch-3.0.0.tgz#0e2534cc6bc238d9ab67e1b9cd5fcd85a6dbf70b"
@@ -3142,10 +3313,10 @@ n-readlines@1.0.0:
3142
3313
  resolved "https://registry.yarnpkg.com/n-readlines/-/n-readlines-1.0.0.tgz#c353797f216c253fdfef7e91da4e8b17c29a91a6"
3143
3314
  integrity sha512-ISDqGcspVu6U3VKqtJZG1uR55SmNNF9uK0EMq1IvNVVZOui6MW6VR0+pIZhqz85ORAGp+4zW+5fJ/SE7bwEibA==
3144
3315
 
3145
- nanoid@3.1.12:
3146
- version "3.1.12"
3147
- resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.1.12.tgz#6f7736c62e8d39421601e4a0c77623a97ea69654"
3148
- integrity sha512-1qstj9z5+x491jfiC4Nelk+f8XBad7LN20PmyWINJEMRSf3wcAjAWysw1qaA8z6NSKe2sjq1hRSDpBH5paCb6A==
3316
+ nanoid@3.1.20:
3317
+ version "3.1.20"
3318
+ resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.1.20.tgz#badc263c6b1dcf14b71efaa85f6ab4c1d6cfc788"
3319
+ integrity sha512-a1cQNyczgKbLX9jwbS/+d7W8fX/RfgYR7lVWwWOGIPNgK2m0MWvrGF6/m4kk6U3QcFMnZf3RIhL0v2Jgh/0Uxw==
3149
3320
 
3150
3321
  natural-compare@^1.4.0:
3151
3322
  version "1.4.0"
@@ -3167,10 +3338,10 @@ node-modules-regexp@^1.0.0:
3167
3338
  resolved "https://registry.yarnpkg.com/node-modules-regexp/-/node-modules-regexp-1.0.0.tgz#8d9dbe28964a4ac5712e9131642107c71e90ec40"
3168
3339
  integrity sha1-jZ2+KJZKSsVxLpExZCEHxx6Q7EA=
3169
3340
 
3170
- node-releases@^1.1.69:
3171
- version "1.1.70"
3172
- resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.70.tgz#66e0ed0273aa65666d7fe78febe7634875426a08"
3173
- integrity sha512-Slf2s69+2/uAD79pVVQo8uSiC34+g8GWY8UH2Qtqv34ZfhYrxpYpfzs9Js9d6O0mbDmALuxaTlplnBTnSELcrw==
3341
+ node-releases@^1.1.71:
3342
+ version "1.1.72"
3343
+ resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.72.tgz#14802ab6b1039a79a0c7d662b610a5bbd76eacbe"
3344
+ integrity sha512-LLUo+PpH3dU6XizX3iVoubUNheF/owjXCZZ5yACDxNnPtgFuludV1ZL3ayK1kVep42Rmm0+R9/Y60NQbZ2bifw==
3174
3345
 
3175
3346
  normalize-path@3.0.0, normalize-path@^3.0.0, normalize-path@~3.0.0:
3176
3347
  version "3.0.0"
@@ -3205,16 +3376,16 @@ object-assign@^4.0.1, object-assign@^4.1.0:
3205
3376
  integrity sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=
3206
3377
 
3207
3378
  object-inspect@^1.9.0:
3208
- version "1.9.0"
3209
- resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.9.0.tgz#c90521d74e1127b67266ded3394ad6116986533a"
3210
- integrity sha512-i3Bp9iTqwhaLZBxGkRfo5ZbE07BQRT7MGu8+nNgwW9ItGp1TzCTw2DLEoWwjClxBjOFI/hWljTAmYGCEwmtnOw==
3379
+ version "1.10.3"
3380
+ resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.10.3.tgz#c2aa7d2d09f50c99375704f7a0adf24c5782d369"
3381
+ integrity sha512-e5mCJlSH7poANfC8z8S9s9S2IN5/4Zb3aZ33f5s8YqoazCFzNLloLU8r5VCG+G7WoqLvAAZoVMcy3tp/3X0Plw==
3211
3382
 
3212
3383
  object-is@^1.0.1:
3213
- version "1.1.4"
3214
- resolved "https://registry.yarnpkg.com/object-is/-/object-is-1.1.4.tgz#63d6c83c00a43f4cbc9434eb9757c8a5b8565068"
3215
- integrity sha512-1ZvAZ4wlF7IyPVOcE1Omikt7UpaFlOQq0HlSti+ZvDH3UiD2brwGMwDbyV43jao2bKJ+4+WdPJHSd7kgzKYVqg==
3384
+ version "1.1.5"
3385
+ resolved "https://registry.yarnpkg.com/object-is/-/object-is-1.1.5.tgz#b9deeaa5fc7f1846a0faecdceec138e5778f53ac"
3386
+ integrity sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==
3216
3387
  dependencies:
3217
- call-bind "^1.0.0"
3388
+ call-bind "^1.0.2"
3218
3389
  define-properties "^1.1.3"
3219
3390
 
3220
3391
  object-keys@^1.0.12, object-keys@^1.1.1:
@@ -3369,10 +3540,10 @@ parse-srcset@1.0.2:
3369
3540
  resolved "https://registry.yarnpkg.com/parse-srcset/-/parse-srcset-1.0.2.tgz#f2bd221f6cc970a938d88556abc589caaaa2bde1"
3370
3541
  integrity sha1-8r0iH2zJcKk42IVWq8WJyqqiveE=
3371
3542
 
3372
- parse5@5.1.1:
3373
- version "5.1.1"
3374
- resolved "https://registry.yarnpkg.com/parse5/-/parse5-5.1.1.tgz#f68e4e5ba1852ac2cadc00f4555fff6c2abb6178"
3375
- integrity sha512-ugq4DFI0Ptb+WWjAdOK16+u/nHfiIrcE+sh8kZMaM0WllQKLI9rOUq6c2b7cwPkXdzfQESqvoqK6ug7U/Yyzug==
3543
+ parse5@6.0.1:
3544
+ version "6.0.1"
3545
+ resolved "https://registry.yarnpkg.com/parse5/-/parse5-6.0.1.tgz#e1a1c085c569b3dc08321184f19a39cc27f7c30b"
3546
+ integrity sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==
3376
3547
 
3377
3548
  path-exists@^3.0.0:
3378
3549
  version "3.0.0"
@@ -3414,10 +3585,10 @@ performance-now@^2.1.0:
3414
3585
  resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-2.1.0.tgz#6309f4e0e5fa913ec1c69307ae364b4b377c9e7b"
3415
3586
  integrity sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns=
3416
3587
 
3417
- picomatch@^2.0.4, picomatch@^2.0.5, picomatch@^2.2.1:
3418
- version "2.2.2"
3419
- resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.2.2.tgz#21f333e9b6b8eaff02468f5146ea406d345f4dad"
3420
- integrity sha512-q0M/9eZHzmr0AulXyPwNfZjtwZ/RBZlbN3K3CErVrk50T2ASYI7Bye0EvekFY3IP1Nt2DHu0re+V2ZHIpMkuWg==
3588
+ picomatch@^2.0.4, picomatch@^2.2.1, picomatch@^2.2.3:
3589
+ version "2.2.3"
3590
+ resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.2.3.tgz#465547f359ccc206d3c48e46a1bcb89bf7ee619d"
3591
+ integrity sha512-KpELjfwcCDUb9PeigTs2mBJzXUPzAuP2oPcA989He8Rte0+YUAjw1JVedDhuTKPkHjSYzMN3npC9luThGYEKdg==
3421
3592
 
3422
3593
  pify@^2.0.0:
3423
3594
  version "2.3.0"
@@ -3615,7 +3786,7 @@ pseudomap@^1.0.2:
3615
3786
  resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3"
3616
3787
  integrity sha1-8FKijacOYYkX7wqKw0wa5aaChrM=
3617
3788
 
3618
- psl@^1.1.28:
3789
+ psl@^1.1.28, psl@^1.1.33:
3619
3790
  version "1.8.0"
3620
3791
  resolved "https://registry.yarnpkg.com/psl/-/psl-1.8.0.tgz#9326f8bcfb013adcc005fdff056acce020e51c24"
3621
3792
  integrity sha512-RIdOzyoavK+hA18OGGWDqUTsCLhtA7IcZ/6NCs4fFJaHBDab+pDDmDIByWFRQJq2Cd7r1OoQxBGKOaztq+hjIQ==
@@ -3638,6 +3809,11 @@ qs@~6.5.2:
3638
3809
  resolved "https://registry.yarnpkg.com/qs/-/qs-6.5.2.tgz#cb3ae806e8740444584ef154ce8ee98d403f3e36"
3639
3810
  integrity sha512-N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA==
3640
3811
 
3812
+ queue-microtask@^1.2.2:
3813
+ version "1.2.3"
3814
+ resolved "https://registry.yarnpkg.com/queue-microtask/-/queue-microtask-1.2.3.tgz#4929228bbc724dfac43e0efb058caf7b6cfb6243"
3815
+ integrity sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==
3816
+
3641
3817
  randombytes@^2.1.0:
3642
3818
  version "2.1.0"
3643
3819
  resolved "https://registry.yarnpkg.com/randombytes/-/randombytes-2.1.0.tgz#df6f84372f0270dc65cdf6291349ab7a473d4f2a"
@@ -3706,9 +3882,9 @@ regjsgen@^0.5.1:
3706
3882
  integrity sha512-OFFT3MfrH90xIW8OOSyUrk6QHD5E9JOTeGodiJeBS3J6IwlgzJMNE/1bZklWz5oTg+9dCMyEetclvCVXOPoN3A==
3707
3883
 
3708
3884
  regjsparser@^0.6.4:
3709
- version "0.6.6"
3710
- resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.6.6.tgz#6d8c939d1a654f78859b08ddcc4aa777f3fa800a"
3711
- integrity sha512-jjyuCp+IEMIm3N1H1LLTJW1EISEJV9+5oHdEyrt43Pg9cDSb6rrLZei2cVWpl0xTjmmlpec/lEQGYgM7xfpGCQ==
3885
+ version "0.6.9"
3886
+ resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.6.9.tgz#b489eef7c9a2ce43727627011429cf833a7183e6"
3887
+ integrity sha512-ZqbNRz1SNjLAiYuwY0zoXW8Ne675IX5q+YHioAGbCw4X96Mjl2+dcX9B2ciaeyYjViDAfvIjFpQjJgLttTEERQ==
3712
3888
  dependencies:
3713
3889
  jsesc "~0.5.0"
3714
3890
 
@@ -3752,7 +3928,7 @@ request-promise-core@1.1.4:
3752
3928
  dependencies:
3753
3929
  lodash "^4.17.19"
3754
3930
 
3755
- request-promise-native@^1.0.8:
3931
+ request-promise-native@^1.0.9:
3756
3932
  version "1.0.9"
3757
3933
  resolved "https://registry.yarnpkg.com/request-promise-native/-/request-promise-native-1.0.9.tgz#e407120526a5efdc9a39b28a5679bf47b9d9dc28"
3758
3934
  integrity sha512-wcW+sIUiWnKgNY0dqCpOZkUbF/I+YPi+f09JZIDa39Ec+q82CpSYniDp+ISgTTbKmnpJWASeJBPZmoxH84wt3g==
@@ -3792,11 +3968,6 @@ require-directory@^2.1.1:
3792
3968
  resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42"
3793
3969
  integrity sha1-jGStX9MNqxyXbiNE/+f3kqam30I=
3794
3970
 
3795
- require-main-filename@^2.0.0:
3796
- version "2.0.0"
3797
- resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-2.0.0.tgz#d0b329ecc7cc0f61649f62215be69af54aa8989b"
3798
- integrity sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==
3799
-
3800
3971
  resolve-from@^3.0.0:
3801
3972
  version "3.0.0"
3802
3973
  resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-3.0.0.tgz#b22c7af7d9d6881bc8b6e653335eebcb0a188748"
@@ -3814,6 +3985,14 @@ resolve@1.15.1:
3814
3985
  dependencies:
3815
3986
  path-parse "^1.0.6"
3816
3987
 
3988
+ resolve@^1.14.2:
3989
+ version "1.20.0"
3990
+ resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.20.0.tgz#629a013fb3f70755d6f0b7935cc1c2c5378b1975"
3991
+ integrity sha512-wENBPt4ySzg4ybFQW2TT1zMQucPK95HSh/nq2CFTZVOGut2+pQvSsgtda4d26YrYcr067wjbmzOG8byDPBX63A==
3992
+ dependencies:
3993
+ is-core-module "^2.2.0"
3994
+ path-parse "^1.0.6"
3995
+
3817
3996
  restore-cursor@^2.0.0:
3818
3997
  version "2.0.0"
3819
3998
  resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-2.0.0.tgz#9f7ee287f82fd326d4fd162923d62129eee0dfaf"
@@ -3855,14 +4034,16 @@ run-async@^2.4.0:
3855
4034
  integrity sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==
3856
4035
 
3857
4036
  run-parallel@^1.1.9:
3858
- version "1.1.10"
3859
- resolved "https://registry.yarnpkg.com/run-parallel/-/run-parallel-1.1.10.tgz#60a51b2ae836636c81377df16cb107351bcd13ef"
3860
- integrity sha512-zb/1OuZ6flOlH6tQyMPUrE3x3Ulxjlo9WIVXR4yVYi4H9UXQaeIsPbLn2R3O3vQCnDKkAl2qHiuocKKX4Tz/Sw==
4037
+ version "1.2.0"
4038
+ resolved "https://registry.yarnpkg.com/run-parallel/-/run-parallel-1.2.0.tgz#66d1368da7bdf921eb9d95bd1a9229e7f21a43ee"
4039
+ integrity sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==
4040
+ dependencies:
4041
+ queue-microtask "^1.2.2"
3861
4042
 
3862
4043
  rxjs@^6.3.3, rxjs@^6.6.0:
3863
- version "6.6.3"
3864
- resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-6.6.3.tgz#8ca84635c4daa900c0d3967a6ee7ac60271ee552"
3865
- integrity sha512-trsQc+xYYXZ3urjOiJOuCOa5N3jAZ3eiSpQB5hIT8zGlL2QfnHLJ2r7GMkBGuIausdJN1OneaI6gQlsqNHHmZQ==
4044
+ version "6.6.7"
4045
+ resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-6.6.7.tgz#90ac018acabf491bf65044235d5863c4dab804c9"
4046
+ integrity sha512-hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ==
3866
4047
  dependencies:
3867
4048
  tslib "^1.9.0"
3868
4049
 
@@ -3881,7 +4062,7 @@ safe-buffer@~5.1.1:
3881
4062
  resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a"
3882
4063
  integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==
3883
4064
 
3884
- saxes@^5.0.0:
4065
+ saxes@^5.0.1:
3885
4066
  version "5.0.1"
3886
4067
  resolved "https://registry.yarnpkg.com/saxes/-/saxes-5.0.1.tgz#eebab953fa3b7608dbe94e5dadb15c888fa6696d"
3887
4068
  integrity sha512-5LBh1Tls8c9xgGjw3QrMwETmTMVk0oFgvrFSvWx62llR2hcEInrKNZ2GZCCuuy2lvWrdl5jhbpeqc5hRYKFOcw==
@@ -3893,7 +4074,7 @@ semver-compare@^1.0.0:
3893
4074
  resolved "https://registry.yarnpkg.com/semver-compare/-/semver-compare-1.0.0.tgz#0dee216a1c941ab37e9efb1788f6afc5ff5537fc"
3894
4075
  integrity sha1-De4hahyUGrN+nvsXiPavxf9VN/w=
3895
4076
 
3896
- semver@6.3.0, semver@^6.1.2, semver@^6.3.0:
4077
+ semver@6.3.0, semver@^6.1.1, semver@^6.1.2, semver@^6.3.0:
3897
4078
  version "6.3.0"
3898
4079
  resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d"
3899
4080
  integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==
@@ -3903,7 +4084,7 @@ semver@7.0.0:
3903
4084
  resolved "https://registry.yarnpkg.com/semver/-/semver-7.0.0.tgz#5f3ca35761e47e05b206c6daff2cf814f0316b8e"
3904
4085
  integrity sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A==
3905
4086
 
3906
- semver@^5.4.1, semver@^5.5.0, semver@^5.6.0:
4087
+ semver@^5.5.0, semver@^5.6.0:
3907
4088
  version "5.7.1"
3908
4089
  resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7"
3909
4090
  integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==
@@ -3915,10 +4096,12 @@ serialize-javascript@5.0.1:
3915
4096
  dependencies:
3916
4097
  randombytes "^2.1.0"
3917
4098
 
3918
- set-blocking@^2.0.0:
3919
- version "2.0.0"
3920
- resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7"
3921
- integrity sha1-BF+XgtARrppoA93TgrJDkrPYkPc=
4099
+ shallow-clone@^3.0.0:
4100
+ version "3.0.1"
4101
+ resolved "https://registry.yarnpkg.com/shallow-clone/-/shallow-clone-3.0.1.tgz#8f2981ad92531f55035b01fb230769a40e02efa3"
4102
+ integrity sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==
4103
+ dependencies:
4104
+ kind-of "^6.0.2"
3922
4105
 
3923
4106
  shebang-command@^1.2.0:
3924
4107
  version "1.2.0"
@@ -3955,9 +4138,9 @@ signal-exit@^3.0.2:
3955
4138
  integrity sha512-VUJ49FC8U1OxwZLxIbTTrDvLnf/6TDgxZcK8wxR8zs13xpx7xbG60ndBlhNrFi2EMuFRoeDoJO7wthSLq42EjA==
3956
4139
 
3957
4140
  simple-html-tokenizer@^0.5.7:
3958
- version "0.5.10"
3959
- resolved "https://registry.yarnpkg.com/simple-html-tokenizer/-/simple-html-tokenizer-0.5.10.tgz#0843e4f00c9677f1c81e3dfeefcee0a4aca8e5d0"
3960
- integrity sha512-1DHMUmvUOGuUZ9/+cX/+hOhWhRD5dEw6lodn8WuV+T+cQ31hhBcCu1dcDsNotowi4mMaNhrLyKoS+DtB81HdDA==
4141
+ version "0.5.11"
4142
+ resolved "https://registry.yarnpkg.com/simple-html-tokenizer/-/simple-html-tokenizer-0.5.11.tgz#4c5186083c164ba22a7b477b7687ac056ad6b1d9"
4143
+ integrity sha512-C2WEK/Z3HoSFbYq8tI7ni3eOo/NneSPRoPpcM7WdLjFOArFuyXEjAoCdOC3DgMfRyziZQ1hCNR4mrNdWEvD0og==
3961
4144
 
3962
4145
  slash@^3.0.0:
3963
4146
  version "3.0.0"
@@ -4039,7 +4222,7 @@ string-argv@^0.3.0:
4039
4222
  resolved "https://registry.yarnpkg.com/string-argv/-/string-argv-0.3.1.tgz#95e2fbec0427ae19184935f816d74aaa4c5c19da"
4040
4223
  integrity sha512-a1uQGz7IyVy9YwhqjZIZu1c8JO8dNIe20xBmSS6qu9kv++k3JGzCVmprbNN5Kn+BgzD5E7YYwg1CcjuJMRNsvg==
4041
4224
 
4042
- string-width@4.2.0, string-width@^4.1.0:
4225
+ string-width@4.2.0:
4043
4226
  version "4.2.0"
4044
4227
  resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.0.tgz#952182c46cc7b2c313d1596e623992bd163b72b5"
4045
4228
  integrity sha512-zUz5JD+tgqtuDjMhwIg5uFVV3dtqZ9yQJlZVfq4I01/K5Paj5UHj7VyrQOJvzawSVlKpObApbfD0Ed6yJc+1eg==
@@ -4065,7 +4248,7 @@ string-width@^1.0.1:
4065
4248
  is-fullwidth-code-point "^2.0.0"
4066
4249
  strip-ansi "^4.0.0"
4067
4250
 
4068
- string-width@^3.0.0, string-width@^3.1.0:
4251
+ string-width@^3.0.0:
4069
4252
  version "3.1.0"
4070
4253
  resolved "https://registry.yarnpkg.com/string-width/-/string-width-3.1.0.tgz#22767be21b62af1081574306f69ac51b62203961"
4071
4254
  integrity sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==
@@ -4074,20 +4257,29 @@ string-width@^3.0.0, string-width@^3.1.0:
4074
4257
  is-fullwidth-code-point "^2.0.0"
4075
4258
  strip-ansi "^5.1.0"
4076
4259
 
4077
- string.prototype.trimend@^1.0.3:
4078
- version "1.0.3"
4079
- resolved "https://registry.yarnpkg.com/string.prototype.trimend/-/string.prototype.trimend-1.0.3.tgz#a22bd53cca5c7cf44d7c9d5c732118873d6cd18b"
4080
- integrity sha512-ayH0pB+uf0U28CtjlLvL7NaohvR1amUvVZk+y3DYb0Ey2PUV5zPkkKy9+U1ndVEIXO8hNg18eIv9Jntbii+dKw==
4260
+ string-width@^4.1.0, string-width@^4.2.0:
4261
+ version "4.2.2"
4262
+ resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.2.tgz#dafd4f9559a7585cfba529c6a0a4f73488ebd4c5"
4263
+ integrity sha512-XBJbT3N4JhVumXE0eoLU9DCjcaF92KLNqTmFCnG1pf8duUxFGwtP6AD6nkjw9a3IdiRtL3E2w3JDiE/xi3vOeA==
4081
4264
  dependencies:
4082
- call-bind "^1.0.0"
4265
+ emoji-regex "^8.0.0"
4266
+ is-fullwidth-code-point "^3.0.0"
4267
+ strip-ansi "^6.0.0"
4268
+
4269
+ string.prototype.trimend@^1.0.4:
4270
+ version "1.0.4"
4271
+ resolved "https://registry.yarnpkg.com/string.prototype.trimend/-/string.prototype.trimend-1.0.4.tgz#e75ae90c2942c63504686c18b287b4a0b1a45f80"
4272
+ integrity sha512-y9xCjw1P23Awk8EvTpcyL2NIr1j7wJ39f+k6lvRnSMz+mz9CGz9NYPelDk42kOz6+ql8xjfK8oYzy3jAP5QU5A==
4273
+ dependencies:
4274
+ call-bind "^1.0.2"
4083
4275
  define-properties "^1.1.3"
4084
4276
 
4085
- string.prototype.trimstart@^1.0.3:
4086
- version "1.0.3"
4087
- resolved "https://registry.yarnpkg.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.3.tgz#9b4cb590e123bb36564401d59824298de50fd5aa"
4088
- integrity sha512-oBIBUy5lea5tt0ovtOFiEQaBkoBBkyJhZXzJYrSmDo5IUUqbOPvVezuRs/agBIdZ2p2Eo1FD6bD9USyBLfl3xg==
4277
+ string.prototype.trimstart@^1.0.4:
4278
+ version "1.0.4"
4279
+ resolved "https://registry.yarnpkg.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.4.tgz#b36399af4ab2999b4c9c648bd7a3fb2bb26feeed"
4280
+ integrity sha512-jh6e984OBfvxS50tdY2nRZnoC5/mLFKOREQfw8t5yytkoUsJRNxvI/E39qu1sD0OtWI3OC0XgKSmcWwziwYuZw==
4089
4281
  dependencies:
4090
- call-bind "^1.0.0"
4282
+ call-bind "^1.0.2"
4091
4283
  define-properties "^1.1.3"
4092
4284
 
4093
4285
  stringify-object@^3.3.0:
@@ -4113,7 +4305,7 @@ strip-ansi@^4.0.0:
4113
4305
  dependencies:
4114
4306
  ansi-regex "^3.0.0"
4115
4307
 
4116
- strip-ansi@^5.0.0, strip-ansi@^5.1.0, strip-ansi@^5.2.0:
4308
+ strip-ansi@^5.1.0, strip-ansi@^5.2.0:
4117
4309
  version "5.2.0"
4118
4310
  resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-5.2.0.tgz#8c9a536feb6afc962bdfa5b104a5091c1ad9c0ae"
4119
4311
  integrity sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==
@@ -4137,10 +4329,10 @@ strip-json-comments@3.1.1, strip-json-comments@^3.0.1:
4137
4329
  resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz#31f1281b3832630434831c310c01cccda8cbe006"
4138
4330
  integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==
4139
4331
 
4140
- supports-color@7.2.0, supports-color@^7.1.0:
4141
- version "7.2.0"
4142
- resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da"
4143
- integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==
4332
+ supports-color@8.1.1:
4333
+ version "8.1.1"
4334
+ resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-8.1.1.tgz#cd6fc17e28500cff56c1b86c0a7fd4a54a73005c"
4335
+ integrity sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==
4144
4336
  dependencies:
4145
4337
  has-flag "^4.0.0"
4146
4338
 
@@ -4170,6 +4362,13 @@ supports-color@^6.1.0:
4170
4362
  dependencies:
4171
4363
  has-flag "^3.0.0"
4172
4364
 
4365
+ supports-color@^7.1.0:
4366
+ version "7.2.0"
4367
+ resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da"
4368
+ integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==
4369
+ dependencies:
4370
+ has-flag "^4.0.0"
4371
+
4173
4372
  symbol-observable@^1.1.0:
4174
4373
  version "1.2.0"
4175
4374
  resolved "https://registry.yarnpkg.com/symbol-observable/-/symbol-observable-1.2.0.tgz#c22688aed4eab3cdc2dfeacbb561660560a00804"
@@ -4227,14 +4426,14 @@ tough-cookie@^2.3.3, tough-cookie@~2.5.0:
4227
4426
  psl "^1.1.28"
4228
4427
  punycode "^2.1.1"
4229
4428
 
4230
- tough-cookie@^3.0.1:
4231
- version "3.0.1"
4232
- resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-3.0.1.tgz#9df4f57e739c26930a018184887f4adb7dca73b2"
4233
- integrity sha512-yQyJ0u4pZsv9D4clxO69OEjLWYw+jbgspjTue4lTQZLfV0c5l1VmK2y1JK8E9ahdpltPOaAThPcp5nKPUgSnsg==
4429
+ tough-cookie@^4.0.0:
4430
+ version "4.0.0"
4431
+ resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-4.0.0.tgz#d822234eeca882f991f0f908824ad2622ddbece4"
4432
+ integrity sha512-tHdtEpQCMrc1YLrMaqXXcj6AxhYi/xgit6mZu1+EDWUn+qhUf8wMQoFIy9NXuq23zAwtcB0t/MjACGR18pcRbg==
4234
4433
  dependencies:
4235
- ip-regex "^2.1.0"
4236
- psl "^1.1.28"
4434
+ psl "^1.1.33"
4237
4435
  punycode "^2.1.1"
4436
+ universalify "^0.1.2"
4238
4437
 
4239
4438
  tr46@^2.0.2:
4240
4439
  version "2.0.2"
@@ -4264,9 +4463,9 @@ tslib@^1.10.0, tslib@^1.8.1, tslib@^1.9.0, tslib@^1.9.3:
4264
4463
  integrity sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==
4265
4464
 
4266
4465
  tsutils@^3.17.1:
4267
- version "3.20.0"
4268
- resolved "https://registry.yarnpkg.com/tsutils/-/tsutils-3.20.0.tgz#ea03ea45462e146b53d70ce0893de453ff24f698"
4269
- integrity sha512-RYbuQuvkhuqVeXweWT3tJLKOEJ/UUw9GjNEZGWdrLLlM+611o1gwLHBpxoFJKKl25fLprp2eVthtKs5JOrNeXg==
4466
+ version "3.21.0"
4467
+ resolved "https://registry.yarnpkg.com/tsutils/-/tsutils-3.21.0.tgz#b48717d394cea6c1e096983eed58e9d61715b623"
4468
+ integrity sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==
4270
4469
  dependencies:
4271
4470
  tslib "^1.8.1"
4272
4471
 
@@ -4289,10 +4488,10 @@ type-check@~0.3.2:
4289
4488
  dependencies:
4290
4489
  prelude-ls "~1.1.2"
4291
4490
 
4292
- type-fest@^0.11.0:
4293
- version "0.11.0"
4294
- resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.11.0.tgz#97abf0872310fed88a5c466b25681576145e33f1"
4295
- integrity sha512-OdjXJxnCN1AvyLSzeKIgXTXxV+99ZuXl3Hpo9XpJAv9MBcHrrJOQ5kV7ypXOuQie+AmWG25hLbiKdwYTifzcfQ==
4491
+ type-fest@^0.21.3:
4492
+ version "0.21.3"
4493
+ resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.21.3.tgz#d260a24b0198436e133fa26a524a6d65fa3b2e37"
4494
+ integrity sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==
4296
4495
 
4297
4496
  type-fest@^0.8.1:
4298
4497
  version "0.8.1"
@@ -4300,9 +4499,19 @@ type-fest@^0.8.1:
4300
4499
  integrity sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==
4301
4500
 
4302
4501
  uglify-js@^3.1.4:
4303
- version "3.12.5"
4304
- resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.12.5.tgz#83241496087c640efe9dfc934832e71725aba008"
4305
- integrity sha512-SgpgScL4T7Hj/w/GexjnBHi3Ien9WS1Rpfg5y91WXMj9SY997ZCQU76mH4TpLwwfmMvoOU8wiaRkIf6NaH3mtg==
4502
+ version "3.13.7"
4503
+ resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.13.7.tgz#25468a3b39b1c875df03f0937b2b7036a93f3fee"
4504
+ integrity sha512-1Psi2MmnZJbnEsgJJIlfnd7tFlJfitusmR7zDI8lXlFI0ACD4/Rm/xdrU8bh6zF0i74aiVoBtkRiFulkrmh3AA==
4505
+
4506
+ unbox-primitive@^1.0.0:
4507
+ version "1.0.1"
4508
+ resolved "https://registry.yarnpkg.com/unbox-primitive/-/unbox-primitive-1.0.1.tgz#085e215625ec3162574dc8859abee78a59b14471"
4509
+ integrity sha512-tZU/3NqK3dA5gpE1KtyiJUrEB0lxnGkMFHptJ7q6ewdZ8s12QrODwNbhIJStmJkd1QDXa1NRA8aF2A1zk/Ypyw==
4510
+ dependencies:
4511
+ function-bind "^1.1.1"
4512
+ has-bigints "^1.0.1"
4513
+ has-symbols "^1.0.2"
4514
+ which-boxed-primitive "^1.0.2"
4306
4515
 
4307
4516
  unherit@^1.0.4:
4308
4517
  version "1.1.3"
@@ -4398,6 +4607,11 @@ unist-util-visit@^1.1.0:
4398
4607
  dependencies:
4399
4608
  unist-util-visit-parents "^2.0.0"
4400
4609
 
4610
+ universalify@^0.1.2:
4611
+ version "0.1.2"
4612
+ resolved "https://registry.yarnpkg.com/universalify/-/universalify-0.1.2.tgz#b646f69be3942dabcecc9d6639c80dc105efaa66"
4613
+ integrity sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==
4614
+
4401
4615
  uri-js@^4.2.2:
4402
4616
  version "4.4.1"
4403
4617
  resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.4.1.tgz#9b1a52595225859e55f669d928f88c6c57f2a77e"
@@ -4423,9 +4637,9 @@ uuid@^3.3.2:
4423
4637
  integrity sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==
4424
4638
 
4425
4639
  v8-compile-cache@^2.0.3:
4426
- version "2.2.0"
4427
- resolved "https://registry.yarnpkg.com/v8-compile-cache/-/v8-compile-cache-2.2.0.tgz#9471efa3ef9128d2f7c6a7ca39c4dd6b5055b132"
4428
- integrity sha512-gTpR5XQNKFwOd4clxfnhaqvfqMpqEwr4tOtCyz4MtYZX2JYhfr1JvBFKdS+7K/9rfpZR3VLX+YWBbKoxCgS43Q==
4640
+ version "2.3.0"
4641
+ resolved "https://registry.yarnpkg.com/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz#2de19618c66dc247dcfb6f99338035d8245a2cee"
4642
+ integrity sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==
4429
4643
 
4430
4644
  verror@1.10.0:
4431
4645
  version "1.10.0"
@@ -4504,19 +4718,25 @@ whatwg-mimetype@^2.3.0:
4504
4718
  resolved "https://registry.yarnpkg.com/whatwg-mimetype/-/whatwg-mimetype-2.3.0.tgz#3d4b1e0312d2079879f826aff18dbeeca5960fbf"
4505
4719
  integrity sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g==
4506
4720
 
4507
- whatwg-url@^8.0.0:
4508
- version "8.4.0"
4509
- resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-8.4.0.tgz#50fb9615b05469591d2b2bd6dfaed2942ed72837"
4510
- integrity sha512-vwTUFf6V4zhcPkWp/4CQPr1TW9Ml6SF4lVyaIMBdJw5i6qUUJ1QWM4Z6YYVkfka0OUIzVo/0aNtGVGk256IKWw==
4721
+ whatwg-url@^8.0.0, whatwg-url@^8.5.0:
4722
+ version "8.5.0"
4723
+ resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-8.5.0.tgz#7752b8464fc0903fec89aa9846fc9efe07351fd3"
4724
+ integrity sha512-fy+R77xWv0AiqfLl4nuGUlQ3/6b5uNfQ4WAbGQVMYshCTCCPK9psC1nWh3XHuxGVCtlcDDQPQW1csmmIQo+fwg==
4511
4725
  dependencies:
4512
- lodash.sortby "^4.7.0"
4726
+ lodash "^4.7.0"
4513
4727
  tr46 "^2.0.2"
4514
4728
  webidl-conversions "^6.1.0"
4515
4729
 
4516
- which-module@^2.0.0:
4517
- version "2.0.0"
4518
- resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a"
4519
- integrity sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho=
4730
+ which-boxed-primitive@^1.0.2:
4731
+ version "1.0.2"
4732
+ resolved "https://registry.yarnpkg.com/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz#13757bc89b209b049fe5d86430e21cf40a89a8e6"
4733
+ integrity sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==
4734
+ dependencies:
4735
+ is-bigint "^1.0.1"
4736
+ is-boolean-object "^1.1.0"
4737
+ is-number-object "^1.0.4"
4738
+ is-string "^1.0.5"
4739
+ is-symbol "^1.0.3"
4520
4740
 
4521
4741
  which-typed-array@^1.1.2:
4522
4742
  version "1.1.4"
@@ -4562,10 +4782,10 @@ wordwrap@^1.0.0:
4562
4782
  resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb"
4563
4783
  integrity sha1-J1hIEIkUVqQXHI0CJkQa3pDLyus=
4564
4784
 
4565
- workerpool@6.0.2:
4566
- version "6.0.2"
4567
- resolved "https://registry.yarnpkg.com/workerpool/-/workerpool-6.0.2.tgz#e241b43d8d033f1beb52c7851069456039d1d438"
4568
- integrity sha512-DSNyvOpFKrNusaaUwk+ej6cBj1bmhLcBfj80elGk+ZIo5JSkq+unB1dLKEOcNfJDZgjGICfhQ0Q5TbP0PvF4+Q==
4785
+ workerpool@6.1.0:
4786
+ version "6.1.0"
4787
+ resolved "https://registry.yarnpkg.com/workerpool/-/workerpool-6.1.0.tgz#a8e038b4c94569596852de7a8ea4228eefdeb37b"
4788
+ integrity sha512-toV7q9rWNYha963Pl/qyeZ6wG+3nnsyvolaNUS8+R5Wtw6qJPTxIlOP1ZSvcGhEJw+l3HMMmtiNo9Gl61G4GVg==
4569
4789
 
4570
4790
  wrap-ansi@^3.0.1:
4571
4791
  version "3.0.1"
@@ -4575,14 +4795,14 @@ wrap-ansi@^3.0.1:
4575
4795
  string-width "^2.1.1"
4576
4796
  strip-ansi "^4.0.0"
4577
4797
 
4578
- wrap-ansi@^5.1.0:
4579
- version "5.1.0"
4580
- resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-5.1.0.tgz#1fd1f67235d5b6d0fee781056001bfb694c03b09"
4581
- integrity sha512-QC1/iN/2/RPVJ5jYK8BGttj5z83LmSKmvbvrXPNCLZSEb32KKVDJDl/MOt2N01qU2H/FkzEa9PKto1BqDjtd7Q==
4798
+ wrap-ansi@^7.0.0:
4799
+ version "7.0.0"
4800
+ resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43"
4801
+ integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==
4582
4802
  dependencies:
4583
- ansi-styles "^3.2.0"
4584
- string-width "^3.0.0"
4585
- strip-ansi "^5.0.0"
4803
+ ansi-styles "^4.0.0"
4804
+ string-width "^4.1.0"
4805
+ strip-ansi "^6.0.0"
4586
4806
 
4587
4807
  wrappy@1:
4588
4808
  version "1.0.2"
@@ -4596,10 +4816,10 @@ write@1.0.3:
4596
4816
  dependencies:
4597
4817
  mkdirp "^0.5.1"
4598
4818
 
4599
- ws@^7.2.3:
4600
- version "7.4.2"
4601
- resolved "https://registry.yarnpkg.com/ws/-/ws-7.4.2.tgz#782100048e54eb36fe9843363ab1c68672b261dd"
4602
- integrity sha512-T4tewALS3+qsrpGI/8dqNMLIVdq/g/85U98HPMa6F0m6xTbvhXU6RCQLqPH3+SlomNV/LdY6RXEbBpMH6EOJnA==
4819
+ ws@^7.4.4:
4820
+ version "7.4.5"
4821
+ resolved "https://registry.yarnpkg.com/ws/-/ws-7.4.5.tgz#a484dd851e9beb6fdb420027e3885e8ce48986c1"
4822
+ integrity sha512-xzyu3hFvomRfXKH8vOFMU3OguG6oOvhXMo3xsGy3xWExqaM2dxBbVxuD99O7m3ZUFMvvscsZDqxfgMaRr/Nr1g==
4603
4823
 
4604
4824
  xml-name-validator@^3.0.0:
4605
4825
  version "3.0.0"
@@ -4616,10 +4836,10 @@ xtend@^4.0.0, xtend@^4.0.1:
4616
4836
  resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.2.tgz#bb72779f5fa465186b1f438f674fa347fdb5db54"
4617
4837
  integrity sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==
4618
4838
 
4619
- y18n@^4.0.0:
4620
- version "4.0.1"
4621
- resolved "https://registry.yarnpkg.com/y18n/-/y18n-4.0.1.tgz#8db2b83c31c5d75099bb890b23f3094891e247d4"
4622
- integrity sha512-wNcy4NvjMYL8gogWWYAO7ZFWFfHcbdbE57tZO8e4cbpj8tfUcwrwqSl3ad8HxpYWCdXcJUCeKKZS62Av1affwQ==
4839
+ y18n@^5.0.5:
4840
+ version "5.0.8"
4841
+ resolved "https://registry.yarnpkg.com/y18n/-/y18n-5.0.8.tgz#7f4934d0f7ca8c56f95314939ddcd2dd91ce1d55"
4842
+ integrity sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==
4623
4843
 
4624
4844
  yallist@^2.1.2:
4625
4845
  version "2.1.2"
@@ -4643,17 +4863,19 @@ yaml@1.8.3:
4643
4863
  "@babel/runtime" "^7.8.7"
4644
4864
 
4645
4865
  yaml@^1.7.1:
4646
- version "1.10.0"
4647
- resolved "https://registry.yarnpkg.com/yaml/-/yaml-1.10.0.tgz#3b593add944876077d4d683fee01081bd9fff31e"
4648
- integrity sha512-yr2icI4glYaNG+KWONODapy2/jDdMSDnrONSjblABjD9B4Z5LgiircSt8m8sRZFNi08kG9Sm0uSHtEmP3zaEGg==
4866
+ version "1.10.2"
4867
+ resolved "https://registry.yarnpkg.com/yaml/-/yaml-1.10.2.tgz#2301c5ffbf12b467de8da2333a459e29e7920e4b"
4868
+ integrity sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==
4649
4869
 
4650
- yargs-parser@13.1.2, yargs-parser@^13.1.2:
4651
- version "13.1.2"
4652
- resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-13.1.2.tgz#130f09702ebaeef2650d54ce6e3e5706f7a4fb38"
4653
- integrity sha512-3lbsNRf/j+A4QuSZfDRA7HRSfWrzO0YjqTJd5kjAq37Zep1CEgaYmrH9Q3GwPiB9cHyd1Y1UwggGhJGoxipbzg==
4654
- dependencies:
4655
- camelcase "^5.0.0"
4656
- decamelize "^1.2.0"
4870
+ yargs-parser@20.2.4:
4871
+ version "20.2.4"
4872
+ resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-20.2.4.tgz#b42890f14566796f85ae8e3a25290d205f154a54"
4873
+ integrity sha512-WOkpgNhPTlE73h4VFAFsOnomJVaovO8VqLDzy5saChRBFQFBoMYirowyW+Q9HB4HFF4Z7VZTiG3iSzJJA29yRA==
4874
+
4875
+ yargs-parser@^20.2.2:
4876
+ version "20.2.7"
4877
+ resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-20.2.7.tgz#61df85c113edfb5a7a4e36eb8aa60ef423cbc90a"
4878
+ integrity sha512-FiNkvbeHzB/syOjIUxFDCnhSfzAL8R5vs40MgLFBorXACCOAEaWu0gRZl14vG8MR9AOJIZbmkjhusqBYZ3HTHw==
4657
4879
 
4658
4880
  yargs-unparser@2.0.0:
4659
4881
  version "2.0.0"
@@ -4665,21 +4887,18 @@ yargs-unparser@2.0.0:
4665
4887
  flat "^5.0.2"
4666
4888
  is-plain-obj "^2.1.0"
4667
4889
 
4668
- yargs@13.3.2:
4669
- version "13.3.2"
4670
- resolved "https://registry.yarnpkg.com/yargs/-/yargs-13.3.2.tgz#ad7ffefec1aa59565ac915f82dccb38a9c31a2dd"
4671
- integrity sha512-AX3Zw5iPruN5ie6xGRIDgqkT+ZhnRlZMLMHAs8tg7nRruy2Nb+i5o9bwghAogtM08q1dpr2LVoS8KSTMYpWXUw==
4890
+ yargs@16.2.0:
4891
+ version "16.2.0"
4892
+ resolved "https://registry.yarnpkg.com/yargs/-/yargs-16.2.0.tgz#1c82bf0f6b6a66eafce7ef30e376f49a12477f66"
4893
+ integrity sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==
4672
4894
  dependencies:
4673
- cliui "^5.0.0"
4674
- find-up "^3.0.0"
4675
- get-caller-file "^2.0.1"
4895
+ cliui "^7.0.2"
4896
+ escalade "^3.1.1"
4897
+ get-caller-file "^2.0.5"
4676
4898
  require-directory "^2.1.1"
4677
- require-main-filename "^2.0.0"
4678
- set-blocking "^2.0.0"
4679
- string-width "^3.0.0"
4680
- which-module "^2.0.0"
4681
- y18n "^4.0.0"
4682
- yargs-parser "^13.1.2"
4899
+ string-width "^4.2.0"
4900
+ y18n "^5.0.5"
4901
+ yargs-parser "^20.2.2"
4683
4902
 
4684
4903
  yocto-queue@^0.1.0:
4685
4904
  version "0.1.0"