trestle 0.9.1 → 0.9.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/assets/bundle/trestle/bundle.css +0 -0
- data/app/assets/bundle/trestle/bundle.js +0 -0
- data/app/assets/javascripts/trestle/admin.js +1 -0
- data/app/assets/javascripts/trestle/i18n.js.erb +8 -0
- data/app/helpers/trestle/grid_helper.rb +44 -4
- data/app/helpers/trestle/i18n_helper.rb +8 -15
- data/app/helpers/trestle/table_helper.rb +7 -3
- data/app/helpers/trestle/title_helper.rb +11 -0
- data/app/helpers/trestle/toolbars_helper.rb +0 -11
- data/app/views/layouts/trestle/admin.html.erb +4 -4
- data/app/views/trestle/application/_dialog.html.erb +1 -1
- data/app/views/trestle/application/_header.html.erb +1 -3
- data/app/views/trestle/resource/edit.html.erb +2 -2
- data/app/views/trestle/resource/index.html.erb +1 -1
- data/app/views/trestle/resource/new.html.erb +1 -1
- data/app/views/trestle/resource/show.html.erb +2 -2
- data/app/views/trestle/shared/_sidebar.html.erb +1 -1
- data/config/locales/de.rb +18 -0
- data/config/locales/de.yml +101 -0
- data/frontend/js/components/tabs.js +2 -2
- data/lib/generators/trestle/resource/resource_generator.rb +15 -1
- data/lib/generators/trestle/resource/templates/admin.rb.erb +15 -8
- data/lib/trestle.rb +13 -0
- data/lib/trestle/adapters/active_record_adapter.rb +1 -1
- data/lib/trestle/admin.rb +5 -2
- data/lib/trestle/admin/builder.rb +5 -1
- data/lib/trestle/admin/controller.rb +8 -1
- data/lib/trestle/application_controller.rb +2 -0
- data/lib/trestle/configuration.rb +1 -1
- data/lib/trestle/controller/breadcrumbs.rb +1 -1
- data/lib/trestle/controller/title.rb +20 -0
- data/lib/trestle/controller/toolbars.rb +30 -0
- data/lib/trestle/form/automatic.rb +2 -2
- data/lib/trestle/form/field.rb +12 -2
- data/lib/trestle/form/fields/check_box_helpers.rb +1 -1
- data/lib/trestle/form/fields/collection_select.rb +1 -1
- data/lib/trestle/form/fields/date_select.rb +1 -1
- data/lib/trestle/form/fields/datetime_select.rb +1 -1
- data/lib/trestle/form/fields/select.rb +1 -1
- data/lib/trestle/form/fields/static_field.rb +5 -1
- data/lib/trestle/form/fields/tag_select.rb +1 -1
- data/lib/trestle/form/fields/time_select.rb +1 -1
- data/lib/trestle/form/fields/time_zone_select.rb +1 -1
- data/lib/trestle/navigation/item.rb +4 -0
- data/lib/trestle/resource.rb +1 -0
- data/lib/trestle/resource/controller.rb +9 -166
- data/lib/trestle/resource/controller/actions.rb +133 -0
- data/lib/trestle/resource/controller/data_methods.rb +52 -0
- data/lib/trestle/resource/controller/redirection.rb +23 -0
- data/lib/trestle/resource/controller/toolbar.rb +11 -0
- data/lib/trestle/resource/toolbar.rb +29 -0
- data/lib/trestle/table.rb +6 -0
- data/lib/trestle/version.rb +1 -1
- data/trestle.gemspec +1 -0
- data/yarn.lock +518 -496
- metadata +27 -2
@@ -0,0 +1,133 @@
|
|
1
|
+
module Trestle
|
2
|
+
class Resource
|
3
|
+
class Controller
|
4
|
+
module Actions
|
5
|
+
def index
|
6
|
+
respond_to do |format|
|
7
|
+
format.html
|
8
|
+
format.json { render json: collection }
|
9
|
+
|
10
|
+
yield format if block_given?
|
11
|
+
end
|
12
|
+
end
|
13
|
+
|
14
|
+
def new
|
15
|
+
respond_to do |format|
|
16
|
+
format.html
|
17
|
+
format.json { render json: instance }
|
18
|
+
|
19
|
+
yield format if block_given?
|
20
|
+
end
|
21
|
+
end
|
22
|
+
|
23
|
+
def create
|
24
|
+
if save_instance
|
25
|
+
respond_to do |format|
|
26
|
+
format.html do
|
27
|
+
flash[:message] = flash_message("create.success", title: "Success!", message: "The %{lowercase_model_name} was successfully created.")
|
28
|
+
redirect_to_return_location(:create, instance, default: admin.instance_path(instance))
|
29
|
+
end
|
30
|
+
format.json { render json: instance, status: :created, location: admin.instance_path(instance) }
|
31
|
+
|
32
|
+
yield format if block_given?
|
33
|
+
end
|
34
|
+
else
|
35
|
+
respond_to do |format|
|
36
|
+
format.html do
|
37
|
+
flash.now[:error] = flash_message("create.failure", title: "Warning!", message: "Please correct the errors below.")
|
38
|
+
render "new", status: :unprocessable_entity
|
39
|
+
end
|
40
|
+
format.json { render json: instance.errors, status: :unprocessable_entity }
|
41
|
+
|
42
|
+
yield format if block_given?
|
43
|
+
end
|
44
|
+
end
|
45
|
+
end
|
46
|
+
|
47
|
+
def show
|
48
|
+
if admin.singular? && instance.nil?
|
49
|
+
respond_to do |format|
|
50
|
+
format.html { redirect_to action: :new }
|
51
|
+
format.json { head :not_found }
|
52
|
+
|
53
|
+
yield format if block_given?
|
54
|
+
end
|
55
|
+
else
|
56
|
+
respond_to do |format|
|
57
|
+
format.html
|
58
|
+
format.json { render json: instance }
|
59
|
+
|
60
|
+
yield format if block_given?
|
61
|
+
end
|
62
|
+
end
|
63
|
+
end
|
64
|
+
|
65
|
+
def edit
|
66
|
+
if admin.singular? && instance.nil?
|
67
|
+
respond_to do |format|
|
68
|
+
format.html { redirect_to action: :new }
|
69
|
+
format.json { head :not_found }
|
70
|
+
|
71
|
+
yield format if block_given?
|
72
|
+
end
|
73
|
+
else
|
74
|
+
respond_to do |format|
|
75
|
+
format.html
|
76
|
+
format.json { render json: instance }
|
77
|
+
|
78
|
+
yield format if block_given?
|
79
|
+
end
|
80
|
+
end
|
81
|
+
end
|
82
|
+
|
83
|
+
def update
|
84
|
+
if update_instance
|
85
|
+
respond_to do |format|
|
86
|
+
format.html do
|
87
|
+
flash[:message] = flash_message("update.success", title: "Success!", message: "The %{lowercase_model_name} was successfully updated.")
|
88
|
+
redirect_to_return_location(:update, instance, default: admin.instance_path(instance))
|
89
|
+
end
|
90
|
+
format.json { render json: instance, status: :ok }
|
91
|
+
|
92
|
+
yield format if block_given?
|
93
|
+
end
|
94
|
+
else
|
95
|
+
respond_to do |format|
|
96
|
+
format.html do
|
97
|
+
flash.now[:error] = flash_message("update.failure", title: "Warning!", message: "Please correct the errors below.")
|
98
|
+
render "show", status: :unprocessable_entity
|
99
|
+
end
|
100
|
+
format.json { render json: instance.errors, status: :unprocessable_entity }
|
101
|
+
|
102
|
+
yield format if block_given?
|
103
|
+
end
|
104
|
+
end
|
105
|
+
end
|
106
|
+
|
107
|
+
def destroy
|
108
|
+
success = delete_instance
|
109
|
+
|
110
|
+
respond_to do |format|
|
111
|
+
format.html do
|
112
|
+
if success
|
113
|
+
flash[:message] = flash_message("destroy.success", title: "Success!", message: "The %{lowercase_model_name} was successfully deleted.")
|
114
|
+
redirect_to_return_location(:destroy, instance, default: admin.path(:index))
|
115
|
+
else
|
116
|
+
flash[:error] = flash_message("destroy.failure", title: "Warning!", message: "Could not delete %{lowercase_model_name}.")
|
117
|
+
|
118
|
+
if load_instance
|
119
|
+
redirect_to_return_location(:update, instance, default: admin.instance_path(instance))
|
120
|
+
else
|
121
|
+
redirect_to_return_location(:destroy, instance, default: admin.path(:index))
|
122
|
+
end
|
123
|
+
end
|
124
|
+
end
|
125
|
+
format.json { head :no_content }
|
126
|
+
|
127
|
+
yield format if block_given?
|
128
|
+
end
|
129
|
+
end
|
130
|
+
end
|
131
|
+
end
|
132
|
+
end
|
133
|
+
end
|
@@ -0,0 +1,52 @@
|
|
1
|
+
module Trestle
|
2
|
+
class Resource
|
3
|
+
class Controller
|
4
|
+
module DataMethods
|
5
|
+
extend ActiveSupport::Concern
|
6
|
+
|
7
|
+
included do
|
8
|
+
attr_accessor :instance, :collection
|
9
|
+
helper_method :instance, :collection
|
10
|
+
|
11
|
+
before_action :load_collection, only: [:index]
|
12
|
+
before_action :load_instance, only: [:show, :edit, :update, :destroy]
|
13
|
+
before_action :build_instance, only: [:new, :create]
|
14
|
+
end
|
15
|
+
|
16
|
+
protected
|
17
|
+
def load_instance
|
18
|
+
self.instance = admin.find_instance(params)
|
19
|
+
end
|
20
|
+
|
21
|
+
def load_collection
|
22
|
+
self.collection = admin.prepare_collection(params)
|
23
|
+
end
|
24
|
+
|
25
|
+
def build_instance
|
26
|
+
self.instance = admin.build_instance(resource_params, params)
|
27
|
+
end
|
28
|
+
|
29
|
+
def update_instance
|
30
|
+
admin.update_instance(instance, resource_params, params)
|
31
|
+
admin.save_instance(instance, params)
|
32
|
+
end
|
33
|
+
|
34
|
+
def save_instance
|
35
|
+
admin.save_instance(instance, params)
|
36
|
+
end
|
37
|
+
|
38
|
+
def delete_instance
|
39
|
+
admin.delete_instance(instance, params)
|
40
|
+
end
|
41
|
+
|
42
|
+
def resource_params
|
43
|
+
if params.key?(admin.parameter_name)
|
44
|
+
admin.permitted_params(params)
|
45
|
+
else
|
46
|
+
{}
|
47
|
+
end
|
48
|
+
end
|
49
|
+
end
|
50
|
+
end
|
51
|
+
end
|
52
|
+
end
|
@@ -0,0 +1,23 @@
|
|
1
|
+
module Trestle
|
2
|
+
class Resource
|
3
|
+
class Controller
|
4
|
+
module Redirection
|
5
|
+
protected
|
6
|
+
def redirect_to_return_location(action, instance, default:)
|
7
|
+
if admin.return_locations[action] && !dialog_request?
|
8
|
+
location = instance_exec(instance, &admin.return_locations[action])
|
9
|
+
|
10
|
+
case location
|
11
|
+
when :back
|
12
|
+
redirect_back fallback_location: default, turbolinks: false
|
13
|
+
else
|
14
|
+
redirect_to location, turbolinks: false
|
15
|
+
end
|
16
|
+
else
|
17
|
+
redirect_to default, turbolinks: false
|
18
|
+
end
|
19
|
+
end
|
20
|
+
end
|
21
|
+
end
|
22
|
+
end
|
23
|
+
end
|
@@ -0,0 +1,29 @@
|
|
1
|
+
module Trestle
|
2
|
+
class Resource
|
3
|
+
module Toolbar
|
4
|
+
class Builder < Trestle::Toolbar::Builder
|
5
|
+
delegate :admin, :instance, to: :@template
|
6
|
+
delegate :translate, :t, to: :admin
|
7
|
+
|
8
|
+
def new
|
9
|
+
link(t("buttons.new", default: "New %{model_name}"), action: :new, style: :light, icon: "fa fa-plus", class: "btn-new-resource")
|
10
|
+
end
|
11
|
+
|
12
|
+
def save
|
13
|
+
button(t("buttons.save", default: "Save %{model_name}"), style: :success)
|
14
|
+
end
|
15
|
+
|
16
|
+
def delete
|
17
|
+
link(t("buttons.delete", default: "Delete %{model_name}"), instance, action: :destroy, method: :delete, style: :danger, icon: "fa fa-trash", data: { toggle: "confirm-delete", placement: "bottom" })
|
18
|
+
end
|
19
|
+
|
20
|
+
def dismiss
|
21
|
+
button(t("buttons.ok", default: "OK"), style: :light, data: { dismiss: "modal" }) if @template.dialog_request?
|
22
|
+
end
|
23
|
+
alias ok dismiss
|
24
|
+
|
25
|
+
builder_method :new, :save, :delete, :dismiss, :ok
|
26
|
+
end
|
27
|
+
end
|
28
|
+
end
|
29
|
+
end
|
data/lib/trestle/table.rb
CHANGED
data/lib/trestle/version.rb
CHANGED
data/trestle.gemspec
CHANGED
@@ -29,6 +29,7 @@ Gem::Specification.new do |spec|
|
|
29
29
|
spec.add_development_dependency "rspec-rails", "~> 3.5"
|
30
30
|
spec.add_development_dependency "rspec-html-matchers", "~> 0.7.1"
|
31
31
|
spec.add_development_dependency "database_cleaner", "~> 1.6.2"
|
32
|
+
spec.add_development_dependency "ammeter", "~> 1.1.4"
|
32
33
|
|
33
34
|
spec.add_development_dependency "bundler"
|
34
35
|
spec.add_development_dependency "rake"
|
data/yarn.lock
CHANGED
@@ -10,17 +10,17 @@
|
|
10
10
|
"@babel/highlight" "^7.0.0"
|
11
11
|
|
12
12
|
"@babel/core@^7.6.0":
|
13
|
-
version "7.7.
|
14
|
-
resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.7.
|
15
|
-
integrity sha512-
|
13
|
+
version "7.7.5"
|
14
|
+
resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.7.5.tgz#ae1323cd035b5160293307f50647e83f8ba62f7e"
|
15
|
+
integrity sha512-M42+ScN4+1S9iB6f+TL7QBpoQETxbclx+KNoKJABghnKYE+fMzSGqst0BZJc8CpI625bwPwYgUyRvxZ+0mZzpw==
|
16
16
|
dependencies:
|
17
17
|
"@babel/code-frame" "^7.5.5"
|
18
|
-
"@babel/generator" "^7.7.
|
19
|
-
"@babel/helpers" "^7.7.
|
20
|
-
"@babel/parser" "^7.7.
|
21
|
-
"@babel/template" "^7.7.
|
22
|
-
"@babel/traverse" "^7.7.
|
23
|
-
"@babel/types" "^7.7.
|
18
|
+
"@babel/generator" "^7.7.4"
|
19
|
+
"@babel/helpers" "^7.7.4"
|
20
|
+
"@babel/parser" "^7.7.5"
|
21
|
+
"@babel/template" "^7.7.4"
|
22
|
+
"@babel/traverse" "^7.7.4"
|
23
|
+
"@babel/types" "^7.7.4"
|
24
24
|
convert-source-map "^1.7.0"
|
25
25
|
debug "^4.1.0"
|
26
26
|
json5 "^2.1.0"
|
@@ -29,120 +29,120 @@
|
|
29
29
|
semver "^5.4.1"
|
30
30
|
source-map "^0.5.0"
|
31
31
|
|
32
|
-
"@babel/generator@^7.7.
|
33
|
-
version "7.7.
|
34
|
-
resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.7.
|
35
|
-
integrity sha512-
|
32
|
+
"@babel/generator@^7.7.4":
|
33
|
+
version "7.7.4"
|
34
|
+
resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.7.4.tgz#db651e2840ca9aa66f327dcec1dc5f5fa9611369"
|
35
|
+
integrity sha512-m5qo2WgdOJeyYngKImbkyQrnUN1mPceaG5BV+G0E3gWsa4l/jCSryWJdM2x8OuGAOyh+3d5pVYfZWCiNFtynxg==
|
36
36
|
dependencies:
|
37
|
-
"@babel/types" "^7.7.
|
37
|
+
"@babel/types" "^7.7.4"
|
38
38
|
jsesc "^2.5.1"
|
39
39
|
lodash "^4.17.13"
|
40
40
|
source-map "^0.5.0"
|
41
41
|
|
42
|
-
"@babel/helper-annotate-as-pure@^7.
|
43
|
-
version "7.7.
|
44
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.7.
|
45
|
-
integrity sha512-
|
42
|
+
"@babel/helper-annotate-as-pure@^7.7.4":
|
43
|
+
version "7.7.4"
|
44
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.7.4.tgz#bb3faf1e74b74bd547e867e48f551fa6b098b6ce"
|
45
|
+
integrity sha512-2BQmQgECKzYKFPpiycoF9tlb5HA4lrVyAmLLVK177EcQAqjVLciUb2/R+n1boQ9y5ENV3uz2ZqiNw7QMBBw1Og==
|
46
46
|
dependencies:
|
47
|
-
"@babel/types" "^7.7.
|
47
|
+
"@babel/types" "^7.7.4"
|
48
48
|
|
49
|
-
"@babel/helper-builder-binary-assignment-operator-visitor@^7.
|
50
|
-
version "7.7.
|
51
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.7.
|
52
|
-
integrity sha512-
|
49
|
+
"@babel/helper-builder-binary-assignment-operator-visitor@^7.7.4":
|
50
|
+
version "7.7.4"
|
51
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.7.4.tgz#5f73f2b28580e224b5b9bd03146a4015d6217f5f"
|
52
|
+
integrity sha512-Biq/d/WtvfftWZ9Uf39hbPBYDUo986m5Bb4zhkeYDGUllF43D+nUe5M6Vuo6/8JDK/0YX/uBdeoQpyaNhNugZQ==
|
53
53
|
dependencies:
|
54
|
-
"@babel/helper-explode-assignable-expression" "^7.7.
|
55
|
-
"@babel/types" "^7.7.
|
54
|
+
"@babel/helper-explode-assignable-expression" "^7.7.4"
|
55
|
+
"@babel/types" "^7.7.4"
|
56
56
|
|
57
|
-
"@babel/helper-call-delegate@^7.
|
58
|
-
version "7.7.
|
59
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-call-delegate/-/helper-call-delegate-7.7.
|
60
|
-
integrity sha512-
|
57
|
+
"@babel/helper-call-delegate@^7.7.4":
|
58
|
+
version "7.7.4"
|
59
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-call-delegate/-/helper-call-delegate-7.7.4.tgz#621b83e596722b50c0066f9dc37d3232e461b801"
|
60
|
+
integrity sha512-8JH9/B7J7tCYJ2PpWVpw9JhPuEVHztagNVuQAFBVFYluRMlpG7F1CgKEgGeL6KFqcsIa92ZYVj6DSc0XwmN1ZA==
|
61
61
|
dependencies:
|
62
|
-
"@babel/helper-hoist-variables" "^7.7.
|
63
|
-
"@babel/traverse" "^7.7.
|
64
|
-
"@babel/types" "^7.7.
|
62
|
+
"@babel/helper-hoist-variables" "^7.7.4"
|
63
|
+
"@babel/traverse" "^7.7.4"
|
64
|
+
"@babel/types" "^7.7.4"
|
65
65
|
|
66
|
-
"@babel/helper-create-regexp-features-plugin@^7.7.
|
67
|
-
version "7.7.
|
68
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.7.
|
69
|
-
integrity sha512-
|
66
|
+
"@babel/helper-create-regexp-features-plugin@^7.7.4":
|
67
|
+
version "7.7.4"
|
68
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.7.4.tgz#6d5762359fd34f4da1500e4cff9955b5299aaf59"
|
69
|
+
integrity sha512-Mt+jBKaxL0zfOIWrfQpnfYCN7/rS6GKx6CCCfuoqVVd+17R8zNDlzVYmIi9qyb2wOk002NsmSTDymkIygDUH7A==
|
70
70
|
dependencies:
|
71
71
|
"@babel/helper-regex" "^7.4.4"
|
72
72
|
regexpu-core "^4.6.0"
|
73
73
|
|
74
|
-
"@babel/helper-define-map@^7.7.
|
75
|
-
version "7.7.
|
76
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-define-map/-/helper-define-map-7.7.
|
77
|
-
integrity sha512-
|
74
|
+
"@babel/helper-define-map@^7.7.4":
|
75
|
+
version "7.7.4"
|
76
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-define-map/-/helper-define-map-7.7.4.tgz#2841bf92eb8bd9c906851546fe6b9d45e162f176"
|
77
|
+
integrity sha512-v5LorqOa0nVQUvAUTUF3KPastvUt/HzByXNamKQ6RdJRTV7j8rLL+WB5C/MzzWAwOomxDhYFb1wLLxHqox86lg==
|
78
78
|
dependencies:
|
79
|
-
"@babel/helper-function-name" "^7.7.
|
80
|
-
"@babel/types" "^7.7.
|
79
|
+
"@babel/helper-function-name" "^7.7.4"
|
80
|
+
"@babel/types" "^7.7.4"
|
81
81
|
lodash "^4.17.13"
|
82
82
|
|
83
|
-
"@babel/helper-explode-assignable-expression@^7.7.
|
84
|
-
version "7.7.
|
85
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.7.
|
86
|
-
integrity sha512-
|
83
|
+
"@babel/helper-explode-assignable-expression@^7.7.4":
|
84
|
+
version "7.7.4"
|
85
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.7.4.tgz#fa700878e008d85dc51ba43e9fb835cddfe05c84"
|
86
|
+
integrity sha512-2/SicuFrNSXsZNBxe5UGdLr+HZg+raWBLE9vC98bdYOKX/U6PY0mdGlYUJdtTDPSU0Lw0PNbKKDpwYHJLn2jLg==
|
87
87
|
dependencies:
|
88
|
-
"@babel/traverse" "^7.7.
|
89
|
-
"@babel/types" "^7.7.
|
88
|
+
"@babel/traverse" "^7.7.4"
|
89
|
+
"@babel/types" "^7.7.4"
|
90
90
|
|
91
|
-
"@babel/helper-function-name@^7.7.
|
92
|
-
version "7.7.
|
93
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.7.
|
94
|
-
integrity sha512-
|
91
|
+
"@babel/helper-function-name@^7.7.4":
|
92
|
+
version "7.7.4"
|
93
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.7.4.tgz#ab6e041e7135d436d8f0a3eca15de5b67a341a2e"
|
94
|
+
integrity sha512-AnkGIdiBhEuiwdoMnKm7jfPfqItZhgRaZfMg1XX3bS25INOnLPjPG1Ppnajh8eqgt5kPJnfqrRHqFqmjKDZLzQ==
|
95
95
|
dependencies:
|
96
|
-
"@babel/helper-get-function-arity" "^7.7.
|
97
|
-
"@babel/template" "^7.7.
|
98
|
-
"@babel/types" "^7.7.
|
96
|
+
"@babel/helper-get-function-arity" "^7.7.4"
|
97
|
+
"@babel/template" "^7.7.4"
|
98
|
+
"@babel/types" "^7.7.4"
|
99
99
|
|
100
|
-
"@babel/helper-get-function-arity@^7.
|
101
|
-
version "7.7.
|
102
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.7.
|
103
|
-
integrity sha512-
|
100
|
+
"@babel/helper-get-function-arity@^7.7.4":
|
101
|
+
version "7.7.4"
|
102
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.7.4.tgz#cb46348d2f8808e632f0ab048172130e636005f0"
|
103
|
+
integrity sha512-QTGKEdCkjgzgfJ3bAyRwF4yyT3pg+vDgan8DSivq1eS0gwi+KGKE5x8kRcbeFTb/673mkO5SN1IZfmCfA5o+EA==
|
104
104
|
dependencies:
|
105
|
-
"@babel/types" "^7.7.
|
105
|
+
"@babel/types" "^7.7.4"
|
106
106
|
|
107
|
-
"@babel/helper-hoist-variables@^7.7.
|
108
|
-
version "7.7.
|
109
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.7.
|
110
|
-
integrity sha512-
|
107
|
+
"@babel/helper-hoist-variables@^7.7.4":
|
108
|
+
version "7.7.4"
|
109
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.7.4.tgz#612384e3d823fdfaaf9fce31550fe5d4db0f3d12"
|
110
|
+
integrity sha512-wQC4xyvc1Jo/FnLirL6CEgPgPCa8M74tOdjWpRhQYapz5JC7u3NYU1zCVoVAGCE3EaIP9T1A3iW0WLJ+reZlpQ==
|
111
111
|
dependencies:
|
112
|
-
"@babel/types" "^7.7.
|
112
|
+
"@babel/types" "^7.7.4"
|
113
113
|
|
114
|
-
"@babel/helper-member-expression-to-functions@^7.7.
|
115
|
-
version "7.7.
|
116
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.7.
|
117
|
-
integrity sha512-
|
114
|
+
"@babel/helper-member-expression-to-functions@^7.7.4":
|
115
|
+
version "7.7.4"
|
116
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.7.4.tgz#356438e2569df7321a8326644d4b790d2122cb74"
|
117
|
+
integrity sha512-9KcA1X2E3OjXl/ykfMMInBK+uVdfIVakVe7W7Lg3wfXUNyS3Q1HWLFRwZIjhqiCGbslummPDnmb7vIekS0C1vw==
|
118
118
|
dependencies:
|
119
|
-
"@babel/types" "^7.7.
|
119
|
+
"@babel/types" "^7.7.4"
|
120
120
|
|
121
|
-
"@babel/helper-module-imports@^7.7.
|
122
|
-
version "7.7.
|
123
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.7.
|
124
|
-
integrity sha512-
|
121
|
+
"@babel/helper-module-imports@^7.7.4":
|
122
|
+
version "7.7.4"
|
123
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.7.4.tgz#e5a92529f8888bf319a6376abfbd1cebc491ad91"
|
124
|
+
integrity sha512-dGcrX6K9l8258WFjyDLJwuVKxR4XZfU0/vTUgOQYWEnRD8mgr+p4d6fCUMq/ys0h4CCt/S5JhbvtyErjWouAUQ==
|
125
125
|
dependencies:
|
126
|
-
"@babel/types" "^7.7.
|
126
|
+
"@babel/types" "^7.7.4"
|
127
127
|
|
128
|
-
"@babel/helper-module-transforms@^7.
|
129
|
-
version "7.7.
|
130
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.7.
|
131
|
-
integrity sha512-
|
128
|
+
"@babel/helper-module-transforms@^7.7.4", "@babel/helper-module-transforms@^7.7.5":
|
129
|
+
version "7.7.5"
|
130
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.7.5.tgz#d044da7ffd91ec967db25cd6748f704b6b244835"
|
131
|
+
integrity sha512-A7pSxyJf1gN5qXVcidwLWydjftUN878VkalhXX5iQDuGyiGK3sOrrKKHF4/A4fwHtnsotv/NipwAeLzY4KQPvw==
|
132
132
|
dependencies:
|
133
|
-
"@babel/helper-module-imports" "^7.7.
|
134
|
-
"@babel/helper-simple-access" "^7.7.
|
135
|
-
"@babel/helper-split-export-declaration" "^7.7.
|
136
|
-
"@babel/template" "^7.7.
|
137
|
-
"@babel/types" "^7.7.
|
133
|
+
"@babel/helper-module-imports" "^7.7.4"
|
134
|
+
"@babel/helper-simple-access" "^7.7.4"
|
135
|
+
"@babel/helper-split-export-declaration" "^7.7.4"
|
136
|
+
"@babel/template" "^7.7.4"
|
137
|
+
"@babel/types" "^7.7.4"
|
138
138
|
lodash "^4.17.13"
|
139
139
|
|
140
|
-
"@babel/helper-optimise-call-expression@^7.7.
|
141
|
-
version "7.7.
|
142
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.7.
|
143
|
-
integrity sha512-
|
140
|
+
"@babel/helper-optimise-call-expression@^7.7.4":
|
141
|
+
version "7.7.4"
|
142
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.7.4.tgz#034af31370d2995242aa4df402c3b7794b2dcdf2"
|
143
|
+
integrity sha512-VB7gWZ2fDkSuqW6b1AKXkJWO5NyNI3bFL/kK79/30moK57blr6NbH8xcl2XcKCwOmJosftWunZqfO84IGq3ZZg==
|
144
144
|
dependencies:
|
145
|
-
"@babel/types" "^7.7.
|
145
|
+
"@babel/types" "^7.7.4"
|
146
146
|
|
147
147
|
"@babel/helper-plugin-utils@^7.0.0":
|
148
148
|
version "7.0.0"
|
@@ -156,60 +156,60 @@
|
|
156
156
|
dependencies:
|
157
157
|
lodash "^4.17.13"
|
158
158
|
|
159
|
-
"@babel/helper-remap-async-to-generator@^7.7.
|
160
|
-
version "7.7.
|
161
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.7.
|
162
|
-
integrity sha512-
|
163
|
-
dependencies:
|
164
|
-
"@babel/helper-annotate-as-pure" "^7.7.
|
165
|
-
"@babel/helper-wrap-function" "^7.7.
|
166
|
-
"@babel/template" "^7.7.
|
167
|
-
"@babel/traverse" "^7.7.
|
168
|
-
"@babel/types" "^7.7.
|
169
|
-
|
170
|
-
"@babel/helper-replace-supers@^7.
|
171
|
-
version "7.7.
|
172
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.7.
|
173
|
-
integrity sha512-
|
174
|
-
dependencies:
|
175
|
-
"@babel/helper-member-expression-to-functions" "^7.7.
|
176
|
-
"@babel/helper-optimise-call-expression" "^7.7.
|
177
|
-
"@babel/traverse" "^7.7.
|
178
|
-
"@babel/types" "^7.7.
|
179
|
-
|
180
|
-
"@babel/helper-simple-access@^7.7.
|
181
|
-
version "7.7.
|
182
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.7.
|
183
|
-
integrity sha512-
|
184
|
-
dependencies:
|
185
|
-
"@babel/template" "^7.7.
|
186
|
-
"@babel/types" "^7.7.
|
187
|
-
|
188
|
-
"@babel/helper-split-export-declaration@^7.7.
|
189
|
-
version "7.7.
|
190
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.7.
|
191
|
-
integrity sha512-
|
192
|
-
dependencies:
|
193
|
-
"@babel/types" "^7.7.
|
194
|
-
|
195
|
-
"@babel/helper-wrap-function@^7.7.
|
196
|
-
version "7.7.
|
197
|
-
resolved "https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.7.
|
198
|
-
integrity sha512-
|
199
|
-
dependencies:
|
200
|
-
"@babel/helper-function-name" "^7.7.
|
201
|
-
"@babel/template" "^7.7.
|
202
|
-
"@babel/traverse" "^7.7.
|
203
|
-
"@babel/types" "^7.7.
|
204
|
-
|
205
|
-
"@babel/helpers@^7.7.
|
206
|
-
version "7.7.
|
207
|
-
resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.7.
|
208
|
-
integrity sha512-
|
209
|
-
dependencies:
|
210
|
-
"@babel/template" "^7.7.
|
211
|
-
"@babel/traverse" "^7.7.
|
212
|
-
"@babel/types" "^7.7.
|
159
|
+
"@babel/helper-remap-async-to-generator@^7.7.4":
|
160
|
+
version "7.7.4"
|
161
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.7.4.tgz#c68c2407350d9af0e061ed6726afb4fff16d0234"
|
162
|
+
integrity sha512-Sk4xmtVdM9sA/jCI80f+KS+Md+ZHIpjuqmYPk1M7F/upHou5e4ReYmExAiu6PVe65BhJPZA2CY9x9k4BqE5klw==
|
163
|
+
dependencies:
|
164
|
+
"@babel/helper-annotate-as-pure" "^7.7.4"
|
165
|
+
"@babel/helper-wrap-function" "^7.7.4"
|
166
|
+
"@babel/template" "^7.7.4"
|
167
|
+
"@babel/traverse" "^7.7.4"
|
168
|
+
"@babel/types" "^7.7.4"
|
169
|
+
|
170
|
+
"@babel/helper-replace-supers@^7.7.4":
|
171
|
+
version "7.7.4"
|
172
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.7.4.tgz#3c881a6a6a7571275a72d82e6107126ec9e2cdd2"
|
173
|
+
integrity sha512-pP0tfgg9hsZWo5ZboYGuBn/bbYT/hdLPVSS4NMmiRJdwWhP0IznPwN9AE1JwyGsjSPLC364I0Qh5p+EPkGPNpg==
|
174
|
+
dependencies:
|
175
|
+
"@babel/helper-member-expression-to-functions" "^7.7.4"
|
176
|
+
"@babel/helper-optimise-call-expression" "^7.7.4"
|
177
|
+
"@babel/traverse" "^7.7.4"
|
178
|
+
"@babel/types" "^7.7.4"
|
179
|
+
|
180
|
+
"@babel/helper-simple-access@^7.7.4":
|
181
|
+
version "7.7.4"
|
182
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.7.4.tgz#a169a0adb1b5f418cfc19f22586b2ebf58a9a294"
|
183
|
+
integrity sha512-zK7THeEXfan7UlWsG2A6CI/L9jVnI5+xxKZOdej39Y0YtDYKx9raHk5F2EtK9K8DHRTihYwg20ADt9S36GR78A==
|
184
|
+
dependencies:
|
185
|
+
"@babel/template" "^7.7.4"
|
186
|
+
"@babel/types" "^7.7.4"
|
187
|
+
|
188
|
+
"@babel/helper-split-export-declaration@^7.7.4":
|
189
|
+
version "7.7.4"
|
190
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.7.4.tgz#57292af60443c4a3622cf74040ddc28e68336fd8"
|
191
|
+
integrity sha512-guAg1SXFcVr04Guk9eq0S4/rWS++sbmyqosJzVs8+1fH5NI+ZcmkaSkc7dmtAFbHFva6yRJnjW3yAcGxjueDug==
|
192
|
+
dependencies:
|
193
|
+
"@babel/types" "^7.7.4"
|
194
|
+
|
195
|
+
"@babel/helper-wrap-function@^7.7.4":
|
196
|
+
version "7.7.4"
|
197
|
+
resolved "https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.7.4.tgz#37ab7fed5150e22d9d7266e830072c0cdd8baace"
|
198
|
+
integrity sha512-VsfzZt6wmsocOaVU0OokwrIytHND55yvyT4BPB9AIIgwr8+x7617hetdJTsuGwygN5RC6mxA9EJztTjuwm2ofg==
|
199
|
+
dependencies:
|
200
|
+
"@babel/helper-function-name" "^7.7.4"
|
201
|
+
"@babel/template" "^7.7.4"
|
202
|
+
"@babel/traverse" "^7.7.4"
|
203
|
+
"@babel/types" "^7.7.4"
|
204
|
+
|
205
|
+
"@babel/helpers@^7.7.4":
|
206
|
+
version "7.7.4"
|
207
|
+
resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.7.4.tgz#62c215b9e6c712dadc15a9a0dcab76c92a940302"
|
208
|
+
integrity sha512-ak5NGZGJ6LV85Q1Zc9gn2n+ayXOizryhjSUBTdu5ih1tlVCJeuQENzc4ItyCVhINVXvIT/ZQ4mheGIsfBkpskg==
|
209
|
+
dependencies:
|
210
|
+
"@babel/template" "^7.7.4"
|
211
|
+
"@babel/traverse" "^7.7.4"
|
212
|
+
"@babel/types" "^7.7.4"
|
213
213
|
|
214
214
|
"@babel/highlight@^7.0.0":
|
215
215
|
version "7.5.0"
|
@@ -220,431 +220,431 @@
|
|
220
220
|
esutils "^2.0.2"
|
221
221
|
js-tokens "^4.0.0"
|
222
222
|
|
223
|
-
"@babel/parser@^7.7.
|
224
|
-
version "7.7.
|
225
|
-
resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.7.
|
226
|
-
integrity sha512-
|
223
|
+
"@babel/parser@^7.7.4", "@babel/parser@^7.7.5":
|
224
|
+
version "7.7.5"
|
225
|
+
resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.7.5.tgz#cbf45321619ac12d83363fcf9c94bb67fa646d71"
|
226
|
+
integrity sha512-KNlOe9+/nk4i29g0VXgl8PEXIRms5xKLJeuZ6UptN0fHv+jDiriG+y94X6qAgWTR0h3KaoM1wK5G5h7MHFRSig==
|
227
227
|
|
228
|
-
"@babel/plugin-proposal-async-generator-functions@^7.7.
|
229
|
-
version "7.7.
|
230
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.7.
|
231
|
-
integrity sha512-
|
228
|
+
"@babel/plugin-proposal-async-generator-functions@^7.7.4":
|
229
|
+
version "7.7.4"
|
230
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.7.4.tgz#0351c5ac0a9e927845fffd5b82af476947b7ce6d"
|
231
|
+
integrity sha512-1ypyZvGRXriY/QP668+s8sFr2mqinhkRDMPSQLNghCQE+GAkFtp+wkHVvg2+Hdki8gwP+NFzJBJ/N1BfzCCDEw==
|
232
232
|
dependencies:
|
233
233
|
"@babel/helper-plugin-utils" "^7.0.0"
|
234
|
-
"@babel/helper-remap-async-to-generator" "^7.7.
|
235
|
-
"@babel/plugin-syntax-async-generators" "^7.
|
234
|
+
"@babel/helper-remap-async-to-generator" "^7.7.4"
|
235
|
+
"@babel/plugin-syntax-async-generators" "^7.7.4"
|
236
236
|
|
237
|
-
"@babel/plugin-proposal-dynamic-import@^7.7.
|
238
|
-
version "7.7.
|
239
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.7.
|
240
|
-
integrity sha512-
|
237
|
+
"@babel/plugin-proposal-dynamic-import@^7.7.4":
|
238
|
+
version "7.7.4"
|
239
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.7.4.tgz#dde64a7f127691758cbfed6cf70de0fa5879d52d"
|
240
|
+
integrity sha512-StH+nGAdO6qDB1l8sZ5UBV8AC3F2VW2I8Vfld73TMKyptMU9DY5YsJAS8U81+vEtxcH3Y/La0wG0btDrhpnhjQ==
|
241
241
|
dependencies:
|
242
242
|
"@babel/helper-plugin-utils" "^7.0.0"
|
243
|
-
"@babel/plugin-syntax-dynamic-import" "^7.
|
243
|
+
"@babel/plugin-syntax-dynamic-import" "^7.7.4"
|
244
244
|
|
245
|
-
"@babel/plugin-proposal-json-strings@^7.
|
246
|
-
version "7.
|
247
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.
|
248
|
-
integrity sha512-
|
245
|
+
"@babel/plugin-proposal-json-strings@^7.7.4":
|
246
|
+
version "7.7.4"
|
247
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.7.4.tgz#7700a6bfda771d8dc81973249eac416c6b4c697d"
|
248
|
+
integrity sha512-wQvt3akcBTfLU/wYoqm/ws7YOAQKu8EVJEvHip/mzkNtjaclQoCCIqKXFP5/eyfnfbQCDV3OLRIK3mIVyXuZlw==
|
249
249
|
dependencies:
|
250
250
|
"@babel/helper-plugin-utils" "^7.0.0"
|
251
|
-
"@babel/plugin-syntax-json-strings" "^7.
|
251
|
+
"@babel/plugin-syntax-json-strings" "^7.7.4"
|
252
252
|
|
253
|
-
"@babel/plugin-proposal-object-rest-spread@^7.
|
254
|
-
version "7.
|
255
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.
|
256
|
-
integrity sha512-
|
253
|
+
"@babel/plugin-proposal-object-rest-spread@^7.7.4":
|
254
|
+
version "7.7.4"
|
255
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.7.4.tgz#cc57849894a5c774214178c8ab64f6334ec8af71"
|
256
|
+
integrity sha512-rnpnZR3/iWKmiQyJ3LKJpSwLDcX/nSXhdLk4Aq/tXOApIvyu7qoabrige0ylsAJffaUC51WiBu209Q0U+86OWQ==
|
257
257
|
dependencies:
|
258
258
|
"@babel/helper-plugin-utils" "^7.0.0"
|
259
|
-
"@babel/plugin-syntax-object-rest-spread" "^7.
|
259
|
+
"@babel/plugin-syntax-object-rest-spread" "^7.7.4"
|
260
260
|
|
261
|
-
"@babel/plugin-proposal-optional-catch-binding@^7.
|
262
|
-
version "7.
|
263
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.
|
264
|
-
integrity sha512-
|
261
|
+
"@babel/plugin-proposal-optional-catch-binding@^7.7.4":
|
262
|
+
version "7.7.4"
|
263
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.7.4.tgz#ec21e8aeb09ec6711bc0a39ca49520abee1de379"
|
264
|
+
integrity sha512-DyM7U2bnsQerCQ+sejcTNZh8KQEUuC3ufzdnVnSiUv/qoGJp2Z3hanKL18KDhsBT5Wj6a7CMT5mdyCNJsEaA9w==
|
265
265
|
dependencies:
|
266
266
|
"@babel/helper-plugin-utils" "^7.0.0"
|
267
|
-
"@babel/plugin-syntax-optional-catch-binding" "^7.
|
267
|
+
"@babel/plugin-syntax-optional-catch-binding" "^7.7.4"
|
268
268
|
|
269
|
-
"@babel/plugin-proposal-unicode-property-regex@^7.7.
|
270
|
-
version "7.7.
|
271
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.7.
|
272
|
-
integrity sha512-
|
269
|
+
"@babel/plugin-proposal-unicode-property-regex@^7.7.4":
|
270
|
+
version "7.7.4"
|
271
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.7.4.tgz#7c239ccaf09470dbe1d453d50057460e84517ebb"
|
272
|
+
integrity sha512-cHgqHgYvffluZk85dJ02vloErm3Y6xtH+2noOBOJ2kXOJH3aVCDnj5eR/lVNlTnYu4hndAPJD3rTFjW3qee0PA==
|
273
273
|
dependencies:
|
274
|
-
"@babel/helper-create-regexp-features-plugin" "^7.7.
|
274
|
+
"@babel/helper-create-regexp-features-plugin" "^7.7.4"
|
275
275
|
"@babel/helper-plugin-utils" "^7.0.0"
|
276
276
|
|
277
|
-
"@babel/plugin-syntax-async-generators@^7.
|
278
|
-
version "7.
|
279
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.
|
280
|
-
integrity sha512-
|
277
|
+
"@babel/plugin-syntax-async-generators@^7.7.4":
|
278
|
+
version "7.7.4"
|
279
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.7.4.tgz#331aaf310a10c80c44a66b238b6e49132bd3c889"
|
280
|
+
integrity sha512-Li4+EjSpBgxcsmeEF8IFcfV/+yJGxHXDirDkEoyFjumuwbmfCVHUt0HuowD/iGM7OhIRyXJH9YXxqiH6N815+g==
|
281
281
|
dependencies:
|
282
282
|
"@babel/helper-plugin-utils" "^7.0.0"
|
283
283
|
|
284
|
-
"@babel/plugin-syntax-dynamic-import@^7.
|
285
|
-
version "7.
|
286
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.
|
287
|
-
integrity sha512-
|
284
|
+
"@babel/plugin-syntax-dynamic-import@^7.7.4":
|
285
|
+
version "7.7.4"
|
286
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.7.4.tgz#29ca3b4415abfe4a5ec381e903862ad1a54c3aec"
|
287
|
+
integrity sha512-jHQW0vbRGvwQNgyVxwDh4yuXu4bH1f5/EICJLAhl1SblLs2CDhrsmCk+v5XLdE9wxtAFRyxx+P//Iw+a5L/tTg==
|
288
288
|
dependencies:
|
289
289
|
"@babel/helper-plugin-utils" "^7.0.0"
|
290
290
|
|
291
|
-
"@babel/plugin-syntax-json-strings@^7.
|
292
|
-
version "7.
|
293
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.
|
294
|
-
integrity sha512-
|
291
|
+
"@babel/plugin-syntax-json-strings@^7.7.4":
|
292
|
+
version "7.7.4"
|
293
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.7.4.tgz#86e63f7d2e22f9e27129ac4e83ea989a382e86cc"
|
294
|
+
integrity sha512-QpGupahTQW1mHRXddMG5srgpHWqRLwJnJZKXTigB9RPFCCGbDGCgBeM/iC82ICXp414WeYx/tD54w7M2qRqTMg==
|
295
295
|
dependencies:
|
296
296
|
"@babel/helper-plugin-utils" "^7.0.0"
|
297
297
|
|
298
|
-
"@babel/plugin-syntax-object-rest-spread@^7.
|
299
|
-
version "7.
|
300
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.
|
301
|
-
integrity sha512-
|
298
|
+
"@babel/plugin-syntax-object-rest-spread@^7.7.4":
|
299
|
+
version "7.7.4"
|
300
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.7.4.tgz#47cf220d19d6d0d7b154304701f468fc1cc6ff46"
|
301
|
+
integrity sha512-mObR+r+KZq0XhRVS2BrBKBpr5jqrqzlPvS9C9vuOf5ilSwzloAl7RPWLrgKdWS6IreaVrjHxTjtyqFiOisaCwg==
|
302
302
|
dependencies:
|
303
303
|
"@babel/helper-plugin-utils" "^7.0.0"
|
304
304
|
|
305
|
-
"@babel/plugin-syntax-optional-catch-binding@^7.
|
306
|
-
version "7.
|
307
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.
|
308
|
-
integrity sha512-
|
305
|
+
"@babel/plugin-syntax-optional-catch-binding@^7.7.4":
|
306
|
+
version "7.7.4"
|
307
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.7.4.tgz#a3e38f59f4b6233867b4a92dcb0ee05b2c334aa6"
|
308
|
+
integrity sha512-4ZSuzWgFxqHRE31Glu+fEr/MirNZOMYmD/0BhBWyLyOOQz/gTAl7QmWm2hX1QxEIXsr2vkdlwxIzTyiYRC4xcQ==
|
309
309
|
dependencies:
|
310
310
|
"@babel/helper-plugin-utils" "^7.0.0"
|
311
311
|
|
312
|
-
"@babel/plugin-syntax-top-level-await@^7.7.
|
313
|
-
version "7.7.
|
314
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.7.
|
315
|
-
integrity sha512-
|
312
|
+
"@babel/plugin-syntax-top-level-await@^7.7.4":
|
313
|
+
version "7.7.4"
|
314
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.7.4.tgz#bd7d8fa7b9fee793a36e4027fd6dd1aa32f946da"
|
315
|
+
integrity sha512-wdsOw0MvkL1UIgiQ/IFr3ETcfv1xb8RMM0H9wbiDyLaJFyiDg5oZvDLCXosIXmFeIlweML5iOBXAkqddkYNizg==
|
316
316
|
dependencies:
|
317
317
|
"@babel/helper-plugin-utils" "^7.0.0"
|
318
318
|
|
319
|
-
"@babel/plugin-transform-arrow-functions@^7.
|
320
|
-
version "7.
|
321
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.
|
322
|
-
integrity sha512-
|
319
|
+
"@babel/plugin-transform-arrow-functions@^7.7.4":
|
320
|
+
version "7.7.4"
|
321
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.7.4.tgz#76309bd578addd8aee3b379d809c802305a98a12"
|
322
|
+
integrity sha512-zUXy3e8jBNPiffmqkHRNDdZM2r8DWhCB7HhcoyZjiK1TxYEluLHAvQuYnTT+ARqRpabWqy/NHkO6e3MsYB5YfA==
|
323
323
|
dependencies:
|
324
324
|
"@babel/helper-plugin-utils" "^7.0.0"
|
325
325
|
|
326
|
-
"@babel/plugin-transform-async-to-generator@^7.7.
|
327
|
-
version "7.7.
|
328
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.7.
|
329
|
-
integrity sha512-
|
326
|
+
"@babel/plugin-transform-async-to-generator@^7.7.4":
|
327
|
+
version "7.7.4"
|
328
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.7.4.tgz#694cbeae6d613a34ef0292713fa42fb45c4470ba"
|
329
|
+
integrity sha512-zpUTZphp5nHokuy8yLlyafxCJ0rSlFoSHypTUWgpdwoDXWQcseaect7cJ8Ppk6nunOM6+5rPMkod4OYKPR5MUg==
|
330
330
|
dependencies:
|
331
|
-
"@babel/helper-module-imports" "^7.7.
|
331
|
+
"@babel/helper-module-imports" "^7.7.4"
|
332
332
|
"@babel/helper-plugin-utils" "^7.0.0"
|
333
|
-
"@babel/helper-remap-async-to-generator" "^7.7.
|
333
|
+
"@babel/helper-remap-async-to-generator" "^7.7.4"
|
334
334
|
|
335
|
-
"@babel/plugin-transform-block-scoped-functions@^7.
|
336
|
-
version "7.
|
337
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.
|
338
|
-
integrity sha512-
|
335
|
+
"@babel/plugin-transform-block-scoped-functions@^7.7.4":
|
336
|
+
version "7.7.4"
|
337
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.7.4.tgz#d0d9d5c269c78eaea76227ace214b8d01e4d837b"
|
338
|
+
integrity sha512-kqtQzwtKcpPclHYjLK//3lH8OFsCDuDJBaFhVwf8kqdnF6MN4l618UDlcA7TfRs3FayrHj+svYnSX8MC9zmUyQ==
|
339
339
|
dependencies:
|
340
340
|
"@babel/helper-plugin-utils" "^7.0.0"
|
341
341
|
|
342
|
-
"@babel/plugin-transform-block-scoping@^7.
|
343
|
-
version "7.
|
344
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.
|
345
|
-
integrity sha512-
|
342
|
+
"@babel/plugin-transform-block-scoping@^7.7.4":
|
343
|
+
version "7.7.4"
|
344
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.7.4.tgz#200aad0dcd6bb80372f94d9e628ea062c58bf224"
|
345
|
+
integrity sha512-2VBe9u0G+fDt9B5OV5DQH4KBf5DoiNkwFKOz0TCvBWvdAN2rOykCTkrL+jTLxfCAm76l9Qo5OqL7HBOx2dWggg==
|
346
346
|
dependencies:
|
347
347
|
"@babel/helper-plugin-utils" "^7.0.0"
|
348
348
|
lodash "^4.17.13"
|
349
349
|
|
350
|
-
"@babel/plugin-transform-classes@^7.7.
|
351
|
-
version "7.7.
|
352
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.7.
|
353
|
-
integrity sha512
|
350
|
+
"@babel/plugin-transform-classes@^7.7.4":
|
351
|
+
version "7.7.4"
|
352
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.7.4.tgz#c92c14be0a1399e15df72667067a8f510c9400ec"
|
353
|
+
integrity sha512-sK1mjWat7K+buWRuImEzjNf68qrKcrddtpQo3swi9j7dUcG6y6R6+Di039QN2bD1dykeswlagupEmpOatFHHUg==
|
354
354
|
dependencies:
|
355
|
-
"@babel/helper-annotate-as-pure" "^7.7.
|
356
|
-
"@babel/helper-define-map" "^7.7.
|
357
|
-
"@babel/helper-function-name" "^7.7.
|
358
|
-
"@babel/helper-optimise-call-expression" "^7.7.
|
355
|
+
"@babel/helper-annotate-as-pure" "^7.7.4"
|
356
|
+
"@babel/helper-define-map" "^7.7.4"
|
357
|
+
"@babel/helper-function-name" "^7.7.4"
|
358
|
+
"@babel/helper-optimise-call-expression" "^7.7.4"
|
359
359
|
"@babel/helper-plugin-utils" "^7.0.0"
|
360
|
-
"@babel/helper-replace-supers" "^7.7.
|
361
|
-
"@babel/helper-split-export-declaration" "^7.7.
|
360
|
+
"@babel/helper-replace-supers" "^7.7.4"
|
361
|
+
"@babel/helper-split-export-declaration" "^7.7.4"
|
362
362
|
globals "^11.1.0"
|
363
363
|
|
364
|
-
"@babel/plugin-transform-computed-properties@^7.
|
365
|
-
version "7.
|
366
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.
|
367
|
-
integrity sha512-
|
364
|
+
"@babel/plugin-transform-computed-properties@^7.7.4":
|
365
|
+
version "7.7.4"
|
366
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.7.4.tgz#e856c1628d3238ffe12d668eb42559f79a81910d"
|
367
|
+
integrity sha512-bSNsOsZnlpLLyQew35rl4Fma3yKWqK3ImWMSC/Nc+6nGjC9s5NFWAer1YQ899/6s9HxO2zQC1WoFNfkOqRkqRQ==
|
368
368
|
dependencies:
|
369
369
|
"@babel/helper-plugin-utils" "^7.0.0"
|
370
370
|
|
371
|
-
"@babel/plugin-transform-destructuring@^7.
|
372
|
-
version "7.
|
373
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.
|
374
|
-
integrity sha512-
|
371
|
+
"@babel/plugin-transform-destructuring@^7.7.4":
|
372
|
+
version "7.7.4"
|
373
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.7.4.tgz#2b713729e5054a1135097b6a67da1b6fe8789267"
|
374
|
+
integrity sha512-4jFMXI1Cu2aXbcXXl8Lr6YubCn6Oc7k9lLsu8v61TZh+1jny2BWmdtvY9zSUlLdGUvcy9DMAWyZEOqjsbeg/wA==
|
375
375
|
dependencies:
|
376
376
|
"@babel/helper-plugin-utils" "^7.0.0"
|
377
377
|
|
378
|
-
"@babel/plugin-transform-dotall-regex@^7.7.
|
379
|
-
version "7.7.
|
380
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.7.
|
381
|
-
integrity sha512-
|
378
|
+
"@babel/plugin-transform-dotall-regex@^7.7.4":
|
379
|
+
version "7.7.4"
|
380
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.7.4.tgz#f7ccda61118c5b7a2599a72d5e3210884a021e96"
|
381
|
+
integrity sha512-mk0cH1zyMa/XHeb6LOTXTbG7uIJ8Rrjlzu91pUx/KS3JpcgaTDwMS8kM+ar8SLOvlL2Lofi4CGBAjCo3a2x+lw==
|
382
382
|
dependencies:
|
383
|
-
"@babel/helper-create-regexp-features-plugin" "^7.7.
|
383
|
+
"@babel/helper-create-regexp-features-plugin" "^7.7.4"
|
384
384
|
"@babel/helper-plugin-utils" "^7.0.0"
|
385
385
|
|
386
|
-
"@babel/plugin-transform-duplicate-keys@^7.
|
387
|
-
version "7.
|
388
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.
|
389
|
-
integrity sha512-
|
386
|
+
"@babel/plugin-transform-duplicate-keys@^7.7.4":
|
387
|
+
version "7.7.4"
|
388
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.7.4.tgz#3d21731a42e3f598a73835299dd0169c3b90ac91"
|
389
|
+
integrity sha512-g1y4/G6xGWMD85Tlft5XedGaZBCIVN+/P0bs6eabmcPP9egFleMAo65OOjlhcz1njpwagyY3t0nsQC9oTFegJA==
|
390
390
|
dependencies:
|
391
391
|
"@babel/helper-plugin-utils" "^7.0.0"
|
392
392
|
|
393
|
-
"@babel/plugin-transform-exponentiation-operator@^7.
|
394
|
-
version "7.
|
395
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.
|
396
|
-
integrity sha512-
|
393
|
+
"@babel/plugin-transform-exponentiation-operator@^7.7.4":
|
394
|
+
version "7.7.4"
|
395
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.7.4.tgz#dd30c0191e3a1ba19bcc7e389bdfddc0729d5db9"
|
396
|
+
integrity sha512-MCqiLfCKm6KEA1dglf6Uqq1ElDIZwFuzz1WH5mTf8k2uQSxEJMbOIEh7IZv7uichr7PMfi5YVSrr1vz+ipp7AQ==
|
397
397
|
dependencies:
|
398
|
-
"@babel/helper-builder-binary-assignment-operator-visitor" "^7.
|
398
|
+
"@babel/helper-builder-binary-assignment-operator-visitor" "^7.7.4"
|
399
399
|
"@babel/helper-plugin-utils" "^7.0.0"
|
400
400
|
|
401
|
-
"@babel/plugin-transform-for-of@^7.
|
402
|
-
version "7.
|
403
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.
|
404
|
-
integrity sha512-
|
401
|
+
"@babel/plugin-transform-for-of@^7.7.4":
|
402
|
+
version "7.7.4"
|
403
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.7.4.tgz#248800e3a5e507b1f103d8b4ca998e77c63932bc"
|
404
|
+
integrity sha512-zZ1fD1B8keYtEcKF+M1TROfeHTKnijcVQm0yO/Yu1f7qoDoxEIc/+GX6Go430Bg84eM/xwPFp0+h4EbZg7epAA==
|
405
405
|
dependencies:
|
406
406
|
"@babel/helper-plugin-utils" "^7.0.0"
|
407
407
|
|
408
|
-
"@babel/plugin-transform-function-name@^7.7.
|
409
|
-
version "7.7.
|
410
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.7.
|
411
|
-
integrity sha512-
|
408
|
+
"@babel/plugin-transform-function-name@^7.7.4":
|
409
|
+
version "7.7.4"
|
410
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.7.4.tgz#75a6d3303d50db638ff8b5385d12451c865025b1"
|
411
|
+
integrity sha512-E/x09TvjHNhsULs2IusN+aJNRV5zKwxu1cpirZyRPw+FyyIKEHPXTsadj48bVpc1R5Qq1B5ZkzumuFLytnbT6g==
|
412
412
|
dependencies:
|
413
|
-
"@babel/helper-function-name" "^7.7.
|
413
|
+
"@babel/helper-function-name" "^7.7.4"
|
414
414
|
"@babel/helper-plugin-utils" "^7.0.0"
|
415
415
|
|
416
|
-
"@babel/plugin-transform-literals@^7.
|
417
|
-
version "7.
|
418
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.
|
419
|
-
integrity sha512-
|
416
|
+
"@babel/plugin-transform-literals@^7.7.4":
|
417
|
+
version "7.7.4"
|
418
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.7.4.tgz#27fe87d2b5017a2a5a34d1c41a6b9f6a6262643e"
|
419
|
+
integrity sha512-X2MSV7LfJFm4aZfxd0yLVFrEXAgPqYoDG53Br/tCKiKYfX0MjVjQeWPIhPHHsCqzwQANq+FLN786fF5rgLS+gw==
|
420
420
|
dependencies:
|
421
421
|
"@babel/helper-plugin-utils" "^7.0.0"
|
422
422
|
|
423
|
-
"@babel/plugin-transform-member-expression-literals@^7.
|
424
|
-
version "7.
|
425
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.
|
426
|
-
integrity sha512-
|
423
|
+
"@babel/plugin-transform-member-expression-literals@^7.7.4":
|
424
|
+
version "7.7.4"
|
425
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.7.4.tgz#aee127f2f3339fc34ce5e3055d7ffbf7aa26f19a"
|
426
|
+
integrity sha512-9VMwMO7i69LHTesL0RdGy93JU6a+qOPuvB4F4d0kR0zyVjJRVJRaoaGjhtki6SzQUu8yen/vxPKN6CWnCUw6bA==
|
427
427
|
dependencies:
|
428
428
|
"@babel/helper-plugin-utils" "^7.0.0"
|
429
429
|
|
430
|
-
"@babel/plugin-transform-modules-amd@^7.5
|
431
|
-
version "7.5
|
432
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.5.
|
433
|
-
integrity sha512-
|
430
|
+
"@babel/plugin-transform-modules-amd@^7.7.5":
|
431
|
+
version "7.7.5"
|
432
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.7.5.tgz#39e0fb717224b59475b306402bb8eedab01e729c"
|
433
|
+
integrity sha512-CT57FG4A2ZUNU1v+HdvDSDrjNWBrtCmSH6YbbgN3Lrf0Di/q/lWRxZrE72p3+HCCz9UjfZOEBdphgC0nzOS6DQ==
|
434
434
|
dependencies:
|
435
|
-
"@babel/helper-module-transforms" "^7.
|
435
|
+
"@babel/helper-module-transforms" "^7.7.5"
|
436
436
|
"@babel/helper-plugin-utils" "^7.0.0"
|
437
437
|
babel-plugin-dynamic-import-node "^2.3.0"
|
438
438
|
|
439
|
-
"@babel/plugin-transform-modules-commonjs@^7.7.
|
440
|
-
version "7.7.
|
441
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.7.
|
442
|
-
integrity sha512-
|
439
|
+
"@babel/plugin-transform-modules-commonjs@^7.7.5":
|
440
|
+
version "7.7.5"
|
441
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.7.5.tgz#1d27f5eb0bcf7543e774950e5b2fa782e637b345"
|
442
|
+
integrity sha512-9Cq4zTFExwFhQI6MT1aFxgqhIsMWQWDVwOgLzl7PTWJHsNaqFvklAU+Oz6AQLAS0dJKTwZSOCo20INwktxpi3Q==
|
443
443
|
dependencies:
|
444
|
-
"@babel/helper-module-transforms" "^7.7.
|
444
|
+
"@babel/helper-module-transforms" "^7.7.5"
|
445
445
|
"@babel/helper-plugin-utils" "^7.0.0"
|
446
|
-
"@babel/helper-simple-access" "^7.7.
|
446
|
+
"@babel/helper-simple-access" "^7.7.4"
|
447
447
|
babel-plugin-dynamic-import-node "^2.3.0"
|
448
448
|
|
449
|
-
"@babel/plugin-transform-modules-systemjs@^7.7.
|
450
|
-
version "7.7.
|
451
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.7.
|
452
|
-
integrity sha512-
|
449
|
+
"@babel/plugin-transform-modules-systemjs@^7.7.4":
|
450
|
+
version "7.7.4"
|
451
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.7.4.tgz#cd98152339d3e763dfe838b7d4273edaf520bb30"
|
452
|
+
integrity sha512-y2c96hmcsUi6LrMqvmNDPBBiGCiQu0aYqpHatVVu6kD4mFEXKjyNxd/drc18XXAf9dv7UXjrZwBVmTTGaGP8iw==
|
453
453
|
dependencies:
|
454
|
-
"@babel/helper-hoist-variables" "^7.7.
|
454
|
+
"@babel/helper-hoist-variables" "^7.7.4"
|
455
455
|
"@babel/helper-plugin-utils" "^7.0.0"
|
456
456
|
babel-plugin-dynamic-import-node "^2.3.0"
|
457
457
|
|
458
|
-
"@babel/plugin-transform-modules-umd@^7.7.
|
459
|
-
version "7.7.
|
460
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.7.
|
461
|
-
integrity sha512-
|
458
|
+
"@babel/plugin-transform-modules-umd@^7.7.4":
|
459
|
+
version "7.7.4"
|
460
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.7.4.tgz#1027c355a118de0aae9fee00ad7813c584d9061f"
|
461
|
+
integrity sha512-u2B8TIi0qZI4j8q4C51ktfO7E3cQ0qnaXFI1/OXITordD40tt17g/sXqgNNCcMTcBFKrUPcGDx+TBJuZxLx7tw==
|
462
462
|
dependencies:
|
463
|
-
"@babel/helper-module-transforms" "^7.7.
|
463
|
+
"@babel/helper-module-transforms" "^7.7.4"
|
464
464
|
"@babel/helper-plugin-utils" "^7.0.0"
|
465
465
|
|
466
|
-
"@babel/plugin-transform-named-capturing-groups-regex@^7.7.
|
467
|
-
version "7.7.
|
468
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.7.
|
469
|
-
integrity sha512
|
466
|
+
"@babel/plugin-transform-named-capturing-groups-regex@^7.7.4":
|
467
|
+
version "7.7.4"
|
468
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.7.4.tgz#fb3bcc4ee4198e7385805007373d6b6f42c98220"
|
469
|
+
integrity sha512-jBUkiqLKvUWpv9GLSuHUFYdmHg0ujC1JEYoZUfeOOfNydZXp1sXObgyPatpcwjWgsdBGsagWW0cdJpX/DO2jMw==
|
470
470
|
dependencies:
|
471
|
-
"@babel/helper-create-regexp-features-plugin" "^7.7.
|
471
|
+
"@babel/helper-create-regexp-features-plugin" "^7.7.4"
|
472
472
|
|
473
|
-
"@babel/plugin-transform-new-target@^7.
|
474
|
-
version "7.
|
475
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.
|
476
|
-
integrity sha512-
|
473
|
+
"@babel/plugin-transform-new-target@^7.7.4":
|
474
|
+
version "7.7.4"
|
475
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.7.4.tgz#4a0753d2d60639437be07b592a9e58ee00720167"
|
476
|
+
integrity sha512-CnPRiNtOG1vRodnsyGX37bHQleHE14B9dnnlgSeEs3ek3fHN1A1SScglTCg1sfbe7sRQ2BUcpgpTpWSfMKz3gg==
|
477
477
|
dependencies:
|
478
478
|
"@babel/helper-plugin-utils" "^7.0.0"
|
479
479
|
|
480
|
-
"@babel/plugin-transform-object-super@^7.
|
481
|
-
version "7.
|
482
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.
|
483
|
-
integrity sha512-
|
480
|
+
"@babel/plugin-transform-object-super@^7.7.4":
|
481
|
+
version "7.7.4"
|
482
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.7.4.tgz#48488937a2d586c0148451bf51af9d7dda567262"
|
483
|
+
integrity sha512-ho+dAEhC2aRnff2JCA0SAK7V2R62zJd/7dmtoe7MHcso4C2mS+vZjn1Pb1pCVZvJs1mgsvv5+7sT+m3Bysb6eg==
|
484
484
|
dependencies:
|
485
485
|
"@babel/helper-plugin-utils" "^7.0.0"
|
486
|
-
"@babel/helper-replace-supers" "^7.
|
486
|
+
"@babel/helper-replace-supers" "^7.7.4"
|
487
487
|
|
488
|
-
"@babel/plugin-transform-parameters@^7.
|
489
|
-
version "7.
|
490
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.
|
491
|
-
integrity sha512-
|
488
|
+
"@babel/plugin-transform-parameters@^7.7.4":
|
489
|
+
version "7.7.4"
|
490
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.7.4.tgz#da4555c97f39b51ac089d31c7380f03bca4075ce"
|
491
|
+
integrity sha512-VJwhVePWPa0DqE9vcfptaJSzNDKrWU/4FbYCjZERtmqEs05g3UMXnYMZoXja7JAJ7Y7sPZipwm/pGApZt7wHlw==
|
492
492
|
dependencies:
|
493
|
-
"@babel/helper-call-delegate" "^7.
|
494
|
-
"@babel/helper-get-function-arity" "^7.
|
493
|
+
"@babel/helper-call-delegate" "^7.7.4"
|
494
|
+
"@babel/helper-get-function-arity" "^7.7.4"
|
495
495
|
"@babel/helper-plugin-utils" "^7.0.0"
|
496
496
|
|
497
|
-
"@babel/plugin-transform-property-literals@^7.
|
498
|
-
version "7.
|
499
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.
|
500
|
-
integrity sha512-
|
497
|
+
"@babel/plugin-transform-property-literals@^7.7.4":
|
498
|
+
version "7.7.4"
|
499
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.7.4.tgz#2388d6505ef89b266103f450f9167e6bd73f98c2"
|
500
|
+
integrity sha512-MatJhlC4iHsIskWYyawl53KuHrt+kALSADLQQ/HkhTjX954fkxIEh4q5slL4oRAnsm/eDoZ4q0CIZpcqBuxhJQ==
|
501
501
|
dependencies:
|
502
502
|
"@babel/helper-plugin-utils" "^7.0.0"
|
503
503
|
|
504
|
-
"@babel/plugin-transform-regenerator@^7.7.
|
505
|
-
version "7.7.
|
506
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.7.
|
507
|
-
integrity sha512
|
504
|
+
"@babel/plugin-transform-regenerator@^7.7.5":
|
505
|
+
version "7.7.5"
|
506
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.7.5.tgz#3a8757ee1a2780f390e89f246065ecf59c26fce9"
|
507
|
+
integrity sha512-/8I8tPvX2FkuEyWbjRCt4qTAgZK0DVy8QRguhA524UH48RfGJy94On2ri+dCuwOpcerPRl9O4ebQkRcVzIaGBw==
|
508
508
|
dependencies:
|
509
509
|
regenerator-transform "^0.14.0"
|
510
510
|
|
511
|
-
"@babel/plugin-transform-reserved-words@^7.
|
512
|
-
version "7.
|
513
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.
|
514
|
-
integrity sha512-
|
511
|
+
"@babel/plugin-transform-reserved-words@^7.7.4":
|
512
|
+
version "7.7.4"
|
513
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.7.4.tgz#6a7cf123ad175bb5c69aec8f6f0770387ed3f1eb"
|
514
|
+
integrity sha512-OrPiUB5s5XvkCO1lS7D8ZtHcswIC57j62acAnJZKqGGnHP+TIc/ljQSrgdX/QyOTdEK5COAhuc820Hi1q2UgLQ==
|
515
515
|
dependencies:
|
516
516
|
"@babel/helper-plugin-utils" "^7.0.0"
|
517
517
|
|
518
|
-
"@babel/plugin-transform-shorthand-properties@^7.
|
519
|
-
version "7.
|
520
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.
|
521
|
-
integrity sha512-
|
518
|
+
"@babel/plugin-transform-shorthand-properties@^7.7.4":
|
519
|
+
version "7.7.4"
|
520
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.7.4.tgz#74a0a9b2f6d67a684c6fbfd5f0458eb7ba99891e"
|
521
|
+
integrity sha512-q+suddWRfIcnyG5YiDP58sT65AJDZSUhXQDZE3r04AuqD6d/XLaQPPXSBzP2zGerkgBivqtQm9XKGLuHqBID6Q==
|
522
522
|
dependencies:
|
523
523
|
"@babel/helper-plugin-utils" "^7.0.0"
|
524
524
|
|
525
|
-
"@babel/plugin-transform-spread@^7.
|
526
|
-
version "7.
|
527
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.
|
528
|
-
integrity sha512-
|
525
|
+
"@babel/plugin-transform-spread@^7.7.4":
|
526
|
+
version "7.7.4"
|
527
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.7.4.tgz#aa673b356fe6b7e70d69b6e33a17fef641008578"
|
528
|
+
integrity sha512-8OSs0FLe5/80cndziPlg4R0K6HcWSM0zyNhHhLsmw/Nc5MaA49cAsnoJ/t/YZf8qkG7fD+UjTRaApVDB526d7Q==
|
529
529
|
dependencies:
|
530
530
|
"@babel/helper-plugin-utils" "^7.0.0"
|
531
531
|
|
532
|
-
"@babel/plugin-transform-sticky-regex@^7.
|
533
|
-
version "7.
|
534
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.
|
535
|
-
integrity sha512-
|
532
|
+
"@babel/plugin-transform-sticky-regex@^7.7.4":
|
533
|
+
version "7.7.4"
|
534
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.7.4.tgz#ffb68c05090c30732076b1285dc1401b404a123c"
|
535
|
+
integrity sha512-Ls2NASyL6qtVe1H1hXts9yuEeONV2TJZmplLONkMPUG158CtmnrzW5Q5teibM5UVOFjG0D3IC5mzXR6pPpUY7A==
|
536
536
|
dependencies:
|
537
537
|
"@babel/helper-plugin-utils" "^7.0.0"
|
538
538
|
"@babel/helper-regex" "^7.0.0"
|
539
539
|
|
540
|
-
"@babel/plugin-transform-template-literals@^7.
|
541
|
-
version "7.
|
542
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.
|
543
|
-
integrity sha512-
|
540
|
+
"@babel/plugin-transform-template-literals@^7.7.4":
|
541
|
+
version "7.7.4"
|
542
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.7.4.tgz#1eb6411736dd3fe87dbd20cc6668e5121c17d604"
|
543
|
+
integrity sha512-sA+KxLwF3QwGj5abMHkHgshp9+rRz+oY9uoRil4CyLtgEuE/88dpkeWgNk5qKVsJE9iSfly3nvHapdRiIS2wnQ==
|
544
544
|
dependencies:
|
545
|
-
"@babel/helper-annotate-as-pure" "^7.
|
545
|
+
"@babel/helper-annotate-as-pure" "^7.7.4"
|
546
546
|
"@babel/helper-plugin-utils" "^7.0.0"
|
547
547
|
|
548
|
-
"@babel/plugin-transform-typeof-symbol@^7.
|
549
|
-
version "7.
|
550
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.
|
551
|
-
integrity sha512-
|
548
|
+
"@babel/plugin-transform-typeof-symbol@^7.7.4":
|
549
|
+
version "7.7.4"
|
550
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.7.4.tgz#3174626214f2d6de322882e498a38e8371b2140e"
|
551
|
+
integrity sha512-KQPUQ/7mqe2m0B8VecdyaW5XcQYaePyl9R7IsKd+irzj6jvbhoGnRE+M0aNkyAzI07VfUQ9266L5xMARitV3wg==
|
552
552
|
dependencies:
|
553
553
|
"@babel/helper-plugin-utils" "^7.0.0"
|
554
554
|
|
555
|
-
"@babel/plugin-transform-unicode-regex@^7.7.
|
556
|
-
version "7.7.
|
557
|
-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.7.
|
558
|
-
integrity sha512-
|
555
|
+
"@babel/plugin-transform-unicode-regex@^7.7.4":
|
556
|
+
version "7.7.4"
|
557
|
+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.7.4.tgz#a3c0f65b117c4c81c5b6484f2a5e7b95346b83ae"
|
558
|
+
integrity sha512-N77UUIV+WCvE+5yHw+oks3m18/umd7y392Zv7mYTpFqHtkpcc+QUz+gLJNTWVlWROIWeLqY0f3OjZxV5TcXnRw==
|
559
559
|
dependencies:
|
560
|
-
"@babel/helper-create-regexp-features-plugin" "^7.7.
|
560
|
+
"@babel/helper-create-regexp-features-plugin" "^7.7.4"
|
561
561
|
"@babel/helper-plugin-utils" "^7.0.0"
|
562
562
|
|
563
563
|
"@babel/preset-env@^7.6.0":
|
564
|
-
version "7.7.
|
565
|
-
resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.7.
|
566
|
-
integrity sha512
|
564
|
+
version "7.7.6"
|
565
|
+
resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.7.6.tgz#39ac600427bbb94eec6b27953f1dfa1d64d457b2"
|
566
|
+
integrity sha512-k5hO17iF/Q7tR9Jv8PdNBZWYW6RofxhnxKjBMc0nG4JTaWvOTiPoO/RLFwAKcA4FpmuBFm6jkoqaRJLGi0zdaQ==
|
567
567
|
dependencies:
|
568
|
-
"@babel/helper-module-imports" "^7.7.
|
568
|
+
"@babel/helper-module-imports" "^7.7.4"
|
569
569
|
"@babel/helper-plugin-utils" "^7.0.0"
|
570
|
-
"@babel/plugin-proposal-async-generator-functions" "^7.7.
|
571
|
-
"@babel/plugin-proposal-dynamic-import" "^7.7.
|
572
|
-
"@babel/plugin-proposal-json-strings" "^7.
|
573
|
-
"@babel/plugin-proposal-object-rest-spread" "^7.
|
574
|
-
"@babel/plugin-proposal-optional-catch-binding" "^7.
|
575
|
-
"@babel/plugin-proposal-unicode-property-regex" "^7.7.
|
576
|
-
"@babel/plugin-syntax-async-generators" "^7.
|
577
|
-
"@babel/plugin-syntax-dynamic-import" "^7.
|
578
|
-
"@babel/plugin-syntax-json-strings" "^7.
|
579
|
-
"@babel/plugin-syntax-object-rest-spread" "^7.
|
580
|
-
"@babel/plugin-syntax-optional-catch-binding" "^7.
|
581
|
-
"@babel/plugin-syntax-top-level-await" "^7.7.
|
582
|
-
"@babel/plugin-transform-arrow-functions" "^7.
|
583
|
-
"@babel/plugin-transform-async-to-generator" "^7.7.
|
584
|
-
"@babel/plugin-transform-block-scoped-functions" "^7.
|
585
|
-
"@babel/plugin-transform-block-scoping" "^7.
|
586
|
-
"@babel/plugin-transform-classes" "^7.7.
|
587
|
-
"@babel/plugin-transform-computed-properties" "^7.
|
588
|
-
"@babel/plugin-transform-destructuring" "^7.
|
589
|
-
"@babel/plugin-transform-dotall-regex" "^7.7.
|
590
|
-
"@babel/plugin-transform-duplicate-keys" "^7.
|
591
|
-
"@babel/plugin-transform-exponentiation-operator" "^7.
|
592
|
-
"@babel/plugin-transform-for-of" "^7.
|
593
|
-
"@babel/plugin-transform-function-name" "^7.7.
|
594
|
-
"@babel/plugin-transform-literals" "^7.
|
595
|
-
"@babel/plugin-transform-member-expression-literals" "^7.
|
596
|
-
"@babel/plugin-transform-modules-amd" "^7.5
|
597
|
-
"@babel/plugin-transform-modules-commonjs" "^7.7.
|
598
|
-
"@babel/plugin-transform-modules-systemjs" "^7.7.
|
599
|
-
"@babel/plugin-transform-modules-umd" "^7.7.
|
600
|
-
"@babel/plugin-transform-named-capturing-groups-regex" "^7.7.
|
601
|
-
"@babel/plugin-transform-new-target" "^7.
|
602
|
-
"@babel/plugin-transform-object-super" "^7.
|
603
|
-
"@babel/plugin-transform-parameters" "^7.
|
604
|
-
"@babel/plugin-transform-property-literals" "^7.
|
605
|
-
"@babel/plugin-transform-regenerator" "^7.7.
|
606
|
-
"@babel/plugin-transform-reserved-words" "^7.
|
607
|
-
"@babel/plugin-transform-shorthand-properties" "^7.
|
608
|
-
"@babel/plugin-transform-spread" "^7.
|
609
|
-
"@babel/plugin-transform-sticky-regex" "^7.
|
610
|
-
"@babel/plugin-transform-template-literals" "^7.
|
611
|
-
"@babel/plugin-transform-typeof-symbol" "^7.
|
612
|
-
"@babel/plugin-transform-unicode-regex" "^7.7.
|
613
|
-
"@babel/types" "^7.7.
|
570
|
+
"@babel/plugin-proposal-async-generator-functions" "^7.7.4"
|
571
|
+
"@babel/plugin-proposal-dynamic-import" "^7.7.4"
|
572
|
+
"@babel/plugin-proposal-json-strings" "^7.7.4"
|
573
|
+
"@babel/plugin-proposal-object-rest-spread" "^7.7.4"
|
574
|
+
"@babel/plugin-proposal-optional-catch-binding" "^7.7.4"
|
575
|
+
"@babel/plugin-proposal-unicode-property-regex" "^7.7.4"
|
576
|
+
"@babel/plugin-syntax-async-generators" "^7.7.4"
|
577
|
+
"@babel/plugin-syntax-dynamic-import" "^7.7.4"
|
578
|
+
"@babel/plugin-syntax-json-strings" "^7.7.4"
|
579
|
+
"@babel/plugin-syntax-object-rest-spread" "^7.7.4"
|
580
|
+
"@babel/plugin-syntax-optional-catch-binding" "^7.7.4"
|
581
|
+
"@babel/plugin-syntax-top-level-await" "^7.7.4"
|
582
|
+
"@babel/plugin-transform-arrow-functions" "^7.7.4"
|
583
|
+
"@babel/plugin-transform-async-to-generator" "^7.7.4"
|
584
|
+
"@babel/plugin-transform-block-scoped-functions" "^7.7.4"
|
585
|
+
"@babel/plugin-transform-block-scoping" "^7.7.4"
|
586
|
+
"@babel/plugin-transform-classes" "^7.7.4"
|
587
|
+
"@babel/plugin-transform-computed-properties" "^7.7.4"
|
588
|
+
"@babel/plugin-transform-destructuring" "^7.7.4"
|
589
|
+
"@babel/plugin-transform-dotall-regex" "^7.7.4"
|
590
|
+
"@babel/plugin-transform-duplicate-keys" "^7.7.4"
|
591
|
+
"@babel/plugin-transform-exponentiation-operator" "^7.7.4"
|
592
|
+
"@babel/plugin-transform-for-of" "^7.7.4"
|
593
|
+
"@babel/plugin-transform-function-name" "^7.7.4"
|
594
|
+
"@babel/plugin-transform-literals" "^7.7.4"
|
595
|
+
"@babel/plugin-transform-member-expression-literals" "^7.7.4"
|
596
|
+
"@babel/plugin-transform-modules-amd" "^7.7.5"
|
597
|
+
"@babel/plugin-transform-modules-commonjs" "^7.7.5"
|
598
|
+
"@babel/plugin-transform-modules-systemjs" "^7.7.4"
|
599
|
+
"@babel/plugin-transform-modules-umd" "^7.7.4"
|
600
|
+
"@babel/plugin-transform-named-capturing-groups-regex" "^7.7.4"
|
601
|
+
"@babel/plugin-transform-new-target" "^7.7.4"
|
602
|
+
"@babel/plugin-transform-object-super" "^7.7.4"
|
603
|
+
"@babel/plugin-transform-parameters" "^7.7.4"
|
604
|
+
"@babel/plugin-transform-property-literals" "^7.7.4"
|
605
|
+
"@babel/plugin-transform-regenerator" "^7.7.5"
|
606
|
+
"@babel/plugin-transform-reserved-words" "^7.7.4"
|
607
|
+
"@babel/plugin-transform-shorthand-properties" "^7.7.4"
|
608
|
+
"@babel/plugin-transform-spread" "^7.7.4"
|
609
|
+
"@babel/plugin-transform-sticky-regex" "^7.7.4"
|
610
|
+
"@babel/plugin-transform-template-literals" "^7.7.4"
|
611
|
+
"@babel/plugin-transform-typeof-symbol" "^7.7.4"
|
612
|
+
"@babel/plugin-transform-unicode-regex" "^7.7.4"
|
613
|
+
"@babel/types" "^7.7.4"
|
614
614
|
browserslist "^4.6.0"
|
615
|
-
core-js-compat "^3.
|
615
|
+
core-js-compat "^3.4.7"
|
616
616
|
invariant "^2.2.2"
|
617
617
|
js-levenshtein "^1.1.3"
|
618
618
|
semver "^5.5.0"
|
619
619
|
|
620
|
-
"@babel/template@^7.7.
|
621
|
-
version "7.7.
|
622
|
-
resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.7.
|
623
|
-
integrity sha512-
|
620
|
+
"@babel/template@^7.7.4":
|
621
|
+
version "7.7.4"
|
622
|
+
resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.7.4.tgz#428a7d9eecffe27deac0a98e23bf8e3675d2a77b"
|
623
|
+
integrity sha512-qUzihgVPguAzXCK7WXw8pqs6cEwi54s3E+HrejlkuWO6ivMKx9hZl3Y2fSXp9i5HgyWmj7RKP+ulaYnKM4yYxw==
|
624
624
|
dependencies:
|
625
625
|
"@babel/code-frame" "^7.0.0"
|
626
|
-
"@babel/parser" "^7.7.
|
627
|
-
"@babel/types" "^7.7.
|
626
|
+
"@babel/parser" "^7.7.4"
|
627
|
+
"@babel/types" "^7.7.4"
|
628
628
|
|
629
|
-
"@babel/traverse@^7.7.
|
630
|
-
version "7.7.
|
631
|
-
resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.7.
|
632
|
-
integrity sha512-
|
629
|
+
"@babel/traverse@^7.7.4":
|
630
|
+
version "7.7.4"
|
631
|
+
resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.7.4.tgz#9c1e7c60fb679fe4fcfaa42500833333c2058558"
|
632
|
+
integrity sha512-P1L58hQyupn8+ezVA2z5KBm4/Zr4lCC8dwKCMYzsa5jFMDMQAzaBNy9W5VjB+KAmBjb40U7a/H6ao+Xo+9saIw==
|
633
633
|
dependencies:
|
634
634
|
"@babel/code-frame" "^7.5.5"
|
635
|
-
"@babel/generator" "^7.7.
|
636
|
-
"@babel/helper-function-name" "^7.7.
|
637
|
-
"@babel/helper-split-export-declaration" "^7.7.
|
638
|
-
"@babel/parser" "^7.7.
|
639
|
-
"@babel/types" "^7.7.
|
635
|
+
"@babel/generator" "^7.7.4"
|
636
|
+
"@babel/helper-function-name" "^7.7.4"
|
637
|
+
"@babel/helper-split-export-declaration" "^7.7.4"
|
638
|
+
"@babel/parser" "^7.7.4"
|
639
|
+
"@babel/types" "^7.7.4"
|
640
640
|
debug "^4.1.0"
|
641
641
|
globals "^11.1.0"
|
642
642
|
lodash "^4.17.13"
|
643
643
|
|
644
|
-
"@babel/types@^7.7.
|
645
|
-
version "7.7.
|
646
|
-
resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.7.
|
647
|
-
integrity sha512-
|
644
|
+
"@babel/types@^7.7.4":
|
645
|
+
version "7.7.4"
|
646
|
+
resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.7.4.tgz#516570d539e44ddf308c07569c258ff94fde9193"
|
647
|
+
integrity sha512-cz5Ji23KCi4T+YIE/BolWosrJuSmoZeN1EFnRtBwF+KKLi8GG/Z2c2hOJJeCXPk4mwk4QFvTmwIodJowXgttRA==
|
648
648
|
dependencies:
|
649
649
|
esutils "^2.0.2"
|
650
650
|
lodash "^4.17.13"
|
@@ -1013,16 +1013,16 @@ atob@^2.1.1:
|
|
1013
1013
|
integrity sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==
|
1014
1014
|
|
1015
1015
|
autoprefixer@^9.6.1:
|
1016
|
-
version "9.7.
|
1017
|
-
resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-9.7.
|
1018
|
-
integrity sha512-
|
1016
|
+
version "9.7.3"
|
1017
|
+
resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-9.7.3.tgz#fd42ed03f53de9beb4ca0d61fb4f7268a9bb50b4"
|
1018
|
+
integrity sha512-8T5Y1C5Iyj6PgkPSFd0ODvK9DIleuPKUPYniNxybS47g2k2wFgLZ46lGQHlBuGKIAEV8fbCDfKCCRS1tvOgc3Q==
|
1019
1019
|
dependencies:
|
1020
|
-
browserslist "^4.
|
1021
|
-
caniuse-lite "^1.0.
|
1020
|
+
browserslist "^4.8.0"
|
1021
|
+
caniuse-lite "^1.0.30001012"
|
1022
1022
|
chalk "^2.4.2"
|
1023
1023
|
normalize-range "^0.1.2"
|
1024
1024
|
num2fraction "^1.2.2"
|
1025
|
-
postcss "^7.0.
|
1025
|
+
postcss "^7.0.23"
|
1026
1026
|
postcss-value-parser "^4.0.2"
|
1027
1027
|
|
1028
1028
|
aws-sign2@~0.7.0:
|
@@ -1100,9 +1100,9 @@ block-stream@*:
|
|
1100
1100
|
inherits "~2.0.0"
|
1101
1101
|
|
1102
1102
|
bluebird@^3.5.5:
|
1103
|
-
version "3.7.
|
1104
|
-
resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.7.
|
1105
|
-
integrity sha512-
|
1103
|
+
version "3.7.2"
|
1104
|
+
resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.7.2.tgz#9f229c15be272454ffa973ace0dbee79a1b0c36f"
|
1105
|
+
integrity sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==
|
1106
1106
|
|
1107
1107
|
bn.js@^4.0.0, bn.js@^4.1.0, bn.js@^4.1.1, bn.js@^4.4.0:
|
1108
1108
|
version "4.11.8"
|
@@ -1120,9 +1120,9 @@ bootstrap-confirmation2@^4.1.0:
|
|
1120
1120
|
integrity sha512-ks1UXTZwdKV6iCQQrYRWA4e0iiq6S36CP+SUQ7F83SDHFh1mZE4kALawbwE4110WymiNYdgBRQmrU/bbLO41Zw==
|
1121
1121
|
|
1122
1122
|
bootstrap@^4.3.1:
|
1123
|
-
version "4.
|
1124
|
-
resolved "https://registry.yarnpkg.com/bootstrap/-/bootstrap-4.
|
1125
|
-
integrity sha512-
|
1123
|
+
version "4.4.1"
|
1124
|
+
resolved "https://registry.yarnpkg.com/bootstrap/-/bootstrap-4.4.1.tgz#8582960eea0c5cd2bede84d8b0baf3789c3e8b01"
|
1125
|
+
integrity sha512-tbx5cHubwE6e2ZG7nqM3g/FZ5PQEDMWmMGNrCUBVRPHXTJaH7CBDdsLeu3eCh3B1tzAxTnAbtmrzvWEvT2NNEA==
|
1126
1126
|
|
1127
1127
|
brace-expansion@^1.1.7:
|
1128
1128
|
version "1.1.11"
|
@@ -1221,14 +1221,14 @@ browserslist@^4.0.0:
|
|
1221
1221
|
electron-to-chromium "^1.3.247"
|
1222
1222
|
node-releases "^1.1.29"
|
1223
1223
|
|
1224
|
-
browserslist@^4.6.0, browserslist@^4.
|
1225
|
-
version "4.
|
1226
|
-
resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.
|
1227
|
-
integrity sha512
|
1224
|
+
browserslist@^4.6.0, browserslist@^4.8.0, browserslist@^4.8.2:
|
1225
|
+
version "4.8.2"
|
1226
|
+
resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.8.2.tgz#b45720ad5fbc8713b7253c20766f701c9a694289"
|
1227
|
+
integrity sha512-+M4oeaTplPm/f1pXDw84YohEv7B1i/2Aisei8s4s6k3QsoSHa7i5sz8u/cGQkkatCPxMASKxPualR4wwYgVboA==
|
1228
1228
|
dependencies:
|
1229
|
-
caniuse-lite "^1.0.
|
1230
|
-
electron-to-chromium "^1.3.
|
1231
|
-
node-releases "^1.1.
|
1229
|
+
caniuse-lite "^1.0.30001015"
|
1230
|
+
electron-to-chromium "^1.3.322"
|
1231
|
+
node-releases "^1.1.42"
|
1232
1232
|
|
1233
1233
|
bs-custom-file-input@^1.3.2:
|
1234
1234
|
version "1.3.2"
|
@@ -1357,10 +1357,10 @@ caniuse-lite@^1.0.30000989:
|
|
1357
1357
|
resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001006.tgz#5b6e8288792cfa275f007b2819a00ccad7112655"
|
1358
1358
|
integrity sha512-MXnUVX27aGs/QINz+QG1sWSLDr3P1A3Hq5EUWoIt0T7K24DuvMxZEnh3Y5aHlJW6Bz2aApJdSewdYLd8zQnUuw==
|
1359
1359
|
|
1360
|
-
caniuse-lite@^1.0.
|
1361
|
-
version "1.0.
|
1362
|
-
resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.
|
1363
|
-
integrity sha512
|
1360
|
+
caniuse-lite@^1.0.30001012, caniuse-lite@^1.0.30001015:
|
1361
|
+
version "1.0.30001015"
|
1362
|
+
resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001015.tgz#15a7ddf66aba786a71d99626bc8f2b91c6f0f5f0"
|
1363
|
+
integrity sha512-/xL2AbW/XWHNu1gnIrO8UitBGoFthcsDgU9VLK1/dpsoxbaD5LscHozKze05R6WLsBvLhqv78dAPozMFQBYLbQ==
|
1364
1364
|
|
1365
1365
|
caseless@~0.12.0:
|
1366
1366
|
version "0.12.0"
|
@@ -1595,9 +1595,9 @@ copy-descriptor@^0.1.0:
|
|
1595
1595
|
integrity sha1-Z29us8OZl8LuGsOpJP1hJHSPV40=
|
1596
1596
|
|
1597
1597
|
copy-webpack-plugin@^5.0.4:
|
1598
|
-
version "5.0
|
1599
|
-
resolved "https://registry.yarnpkg.com/copy-webpack-plugin/-/copy-webpack-plugin-5.0.
|
1600
|
-
integrity sha512-
|
1598
|
+
version "5.1.0"
|
1599
|
+
resolved "https://registry.yarnpkg.com/copy-webpack-plugin/-/copy-webpack-plugin-5.1.0.tgz#cd6bb506ffbbe830bf9ecb3d15cc4946b2edd011"
|
1600
|
+
integrity sha512-0sNrj/Sx7/cWA0k7CVQa0sdA/dzCybqSb0+GbhKuQdOlAvnAwgC2osmbAFOAfha7ZXnreoQmCq5oDjG3gP4VHw==
|
1601
1601
|
dependencies:
|
1602
1602
|
cacache "^12.0.3"
|
1603
1603
|
find-cache-dir "^2.1.0"
|
@@ -1609,15 +1609,15 @@ copy-webpack-plugin@^5.0.4:
|
|
1609
1609
|
normalize-path "^3.0.0"
|
1610
1610
|
p-limit "^2.2.1"
|
1611
1611
|
schema-utils "^1.0.0"
|
1612
|
-
serialize-javascript "^2.1.
|
1612
|
+
serialize-javascript "^2.1.2"
|
1613
1613
|
webpack-log "^2.0.0"
|
1614
1614
|
|
1615
|
-
core-js-compat@^3.
|
1616
|
-
version "3.4.
|
1617
|
-
resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.4.
|
1618
|
-
integrity sha512-
|
1615
|
+
core-js-compat@^3.4.7:
|
1616
|
+
version "3.4.8"
|
1617
|
+
resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.4.8.tgz#f72e6a4ed76437ea710928f44615f926a81607d5"
|
1618
|
+
integrity sha512-l3WTmnXHV2Sfu5VuD7EHE2w7y+K68+kULKt5RJg8ZJk3YhHF1qLD4O8v8AmNq+8vbOwnPFFDvds25/AoEvMqlQ==
|
1619
1619
|
dependencies:
|
1620
|
-
browserslist "^4.
|
1620
|
+
browserslist "^4.8.2"
|
1621
1621
|
semver "^6.3.0"
|
1622
1622
|
|
1623
1623
|
core-util-is@1.0.2, core-util-is@~1.0.0:
|
@@ -1716,22 +1716,22 @@ css-declaration-sorter@^4.0.1:
|
|
1716
1716
|
timsort "^0.3.0"
|
1717
1717
|
|
1718
1718
|
css-loader@^3.2.0:
|
1719
|
-
version "3.
|
1720
|
-
resolved "https://registry.yarnpkg.com/css-loader/-/css-loader-3.
|
1721
|
-
integrity sha512-
|
1719
|
+
version "3.3.0"
|
1720
|
+
resolved "https://registry.yarnpkg.com/css-loader/-/css-loader-3.3.0.tgz#65f889807baec3197313965d6cda9899f936734d"
|
1721
|
+
integrity sha512-x9Y1vvHe5RR+4tzwFdWExPueK00uqFTCw7mZy+9aE/X1SKWOArm5luaOrtJ4d05IpOwJ6S86b/tVcIdhw1Bu4A==
|
1722
1722
|
dependencies:
|
1723
1723
|
camelcase "^5.3.1"
|
1724
1724
|
cssesc "^3.0.0"
|
1725
1725
|
icss-utils "^4.1.1"
|
1726
1726
|
loader-utils "^1.2.3"
|
1727
1727
|
normalize-path "^3.0.0"
|
1728
|
-
postcss "^7.0.
|
1728
|
+
postcss "^7.0.23"
|
1729
1729
|
postcss-modules-extract-imports "^2.0.0"
|
1730
1730
|
postcss-modules-local-by-default "^3.0.2"
|
1731
|
-
postcss-modules-scope "^2.1.
|
1731
|
+
postcss-modules-scope "^2.1.1"
|
1732
1732
|
postcss-modules-values "^3.0.0"
|
1733
|
-
postcss-value-parser "^4.0.
|
1734
|
-
schema-utils "^2.
|
1733
|
+
postcss-value-parser "^4.0.2"
|
1734
|
+
schema-utils "^2.6.0"
|
1735
1735
|
|
1736
1736
|
css-select-base-adapter@^0.1.1:
|
1737
1737
|
version "0.1.1"
|
@@ -2048,10 +2048,10 @@ electron-to-chromium@^1.3.247:
|
|
2048
2048
|
resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.296.tgz#a1d4322d742317945285d3ba88966561b67f3ac8"
|
2049
2049
|
integrity sha512-s5hv+TSJSVRsxH190De66YHb50pBGTweT9XGWYu/LMR20KX6TsjFzObo36CjVAzM+PUeeKSBRtm/mISlCzeojQ==
|
2050
2050
|
|
2051
|
-
electron-to-chromium@^1.3.
|
2052
|
-
version "1.3.
|
2053
|
-
resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.
|
2054
|
-
integrity sha512-
|
2051
|
+
electron-to-chromium@^1.3.322:
|
2052
|
+
version "1.3.322"
|
2053
|
+
resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.322.tgz#a6f7e1c79025c2b05838e8e344f6e89eb83213a8"
|
2054
|
+
integrity sha512-Tc8JQEfGQ1MzfSzI/bTlSr7btJv/FFO7Yh6tanqVmIWOuNCu6/D1MilIEgLtmWqIrsv+o4IjpLAhgMBr/ncNAA==
|
2055
2055
|
|
2056
2056
|
elliptic@^6.0.0:
|
2057
2057
|
version "6.5.1"
|
@@ -2291,12 +2291,12 @@ figgy-pudding@^3.5.1:
|
|
2291
2291
|
integrity sha512-vNKxJHTEKNThjfrdJwHc7brvM6eVevuO5nTj6ez8ZQ1qbXTvGthucRF7S4vf2cr71QVnT70V34v0S1DyQsti0w==
|
2292
2292
|
|
2293
2293
|
file-loader@^4.2.0:
|
2294
|
-
version "4.
|
2295
|
-
resolved "https://registry.yarnpkg.com/file-loader/-/file-loader-4.
|
2296
|
-
integrity sha512
|
2294
|
+
version "4.3.0"
|
2295
|
+
resolved "https://registry.yarnpkg.com/file-loader/-/file-loader-4.3.0.tgz#780f040f729b3d18019f20605f723e844b8a58af"
|
2296
|
+
integrity sha512-aKrYPYjF1yG3oX0kWRrqrSMfgftm7oJW5M+m4owoldH5C51C0RkIwB++JbRvEW3IU6/ZG5n8UvEcdgwOt2UOWA==
|
2297
2297
|
dependencies:
|
2298
2298
|
loader-utils "^1.2.3"
|
2299
|
-
schema-utils "^2.
|
2299
|
+
schema-utils "^2.5.0"
|
2300
2300
|
|
2301
2301
|
fill-range@^4.0.0:
|
2302
2302
|
version "4.0.0"
|
@@ -2614,9 +2614,9 @@ has-flag@^3.0.0:
|
|
2614
2614
|
integrity sha1-tdRU3CGZriJWmfNGfloH87lVuv0=
|
2615
2615
|
|
2616
2616
|
has-symbols@^1.0.0:
|
2617
|
-
version "1.0.
|
2618
|
-
resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.
|
2619
|
-
integrity
|
2617
|
+
version "1.0.1"
|
2618
|
+
resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.1.tgz#9f5214758a44196c406d9bd76cebf81ec2dd31e8"
|
2619
|
+
integrity sha512-PLcsoqu++dmEIZB+6totNFKq/7Do+Z0u4oT0zKOJNl3lYK6vGwwu2hjHs+68OEZbTjiUE9bgOABXbP/GvrS0Kg==
|
2620
2620
|
|
2621
2621
|
has-unicode@^2.0.0:
|
2622
2622
|
version "2.0.1"
|
@@ -3698,13 +3698,20 @@ node-pre-gyp@^0.12.0:
|
|
3698
3698
|
semver "^5.3.0"
|
3699
3699
|
tar "^4"
|
3700
3700
|
|
3701
|
-
node-releases@^1.1.29
|
3701
|
+
node-releases@^1.1.29:
|
3702
3702
|
version "1.1.39"
|
3703
3703
|
resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.39.tgz#c1011f30343aff5b633153b10ff691d278d08e8d"
|
3704
3704
|
integrity sha512-8MRC/ErwNCHOlAFycy9OPca46fQYUjbJRDcZTHVWIGXIjYLM73k70vv3WkYutVnM4cCo4hE0MqBVVZjP6vjISA==
|
3705
3705
|
dependencies:
|
3706
3706
|
semver "^6.3.0"
|
3707
3707
|
|
3708
|
+
node-releases@^1.1.42:
|
3709
|
+
version "1.1.42"
|
3710
|
+
resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.42.tgz#a999f6a62f8746981f6da90627a8d2fc090bbad7"
|
3711
|
+
integrity sha512-OQ/ESmUqGawI2PRX+XIRao44qWYBBfN54ImQYdWVTQqUckuejOg76ysSqDBK8NG3zwySRVnX36JwDQ6x+9GxzA==
|
3712
|
+
dependencies:
|
3713
|
+
semver "^6.3.0"
|
3714
|
+
|
3708
3715
|
node-sass@^4.12.0:
|
3709
3716
|
version "4.13.0"
|
3710
3717
|
resolved "https://registry.yarnpkg.com/node-sass/-/node-sass-4.13.0.tgz#b647288babdd6a1cb726de4545516b31f90da066"
|
@@ -4309,10 +4316,10 @@ postcss-modules-local-by-default@^3.0.2:
|
|
4309
4316
|
postcss-selector-parser "^6.0.2"
|
4310
4317
|
postcss-value-parser "^4.0.0"
|
4311
4318
|
|
4312
|
-
postcss-modules-scope@^2.1.
|
4313
|
-
version "2.1.
|
4314
|
-
resolved "https://registry.yarnpkg.com/postcss-modules-scope/-/postcss-modules-scope-2.1.
|
4315
|
-
integrity sha512-
|
4319
|
+
postcss-modules-scope@^2.1.1:
|
4320
|
+
version "2.1.1"
|
4321
|
+
resolved "https://registry.yarnpkg.com/postcss-modules-scope/-/postcss-modules-scope-2.1.1.tgz#33d4fc946602eb5e9355c4165d68a10727689dba"
|
4322
|
+
integrity sha512-OXRUPecnHCg8b9xWvldG/jUpRIGPNRka0r4D4j0ESUU2/5IOnpsjfPPmDprM3Ih8CgZ8FXjWqaniK5v4rWt3oQ==
|
4316
4323
|
dependencies:
|
4317
4324
|
postcss "^7.0.6"
|
4318
4325
|
postcss-selector-parser "^6.0.0"
|
@@ -4491,7 +4498,7 @@ postcss-value-parser@^4.0.0, postcss-value-parser@^4.0.2:
|
|
4491
4498
|
resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-4.0.2.tgz#482282c09a42706d1fc9a069b73f44ec08391dc9"
|
4492
4499
|
integrity sha512-LmeoohTpp/K4UiyQCwuGWlONxXamGzCMtFxLq4W1nZVGIQLYvMCJx3yAF9qyyuFpflABI9yVdtJAqbihOsCsJQ==
|
4493
4500
|
|
4494
|
-
postcss@^7.0.0, postcss@^7.0.1
|
4501
|
+
postcss@^7.0.0, postcss@^7.0.1:
|
4495
4502
|
version "7.0.18"
|
4496
4503
|
resolved "https://registry.yarnpkg.com/postcss/-/postcss-7.0.18.tgz#4b9cda95ae6c069c67a4d933029eddd4838ac233"
|
4497
4504
|
integrity sha512-/7g1QXXgegpF+9GJj4iN7ChGF40sYuGYJ8WZu8DZWnmhQ/G36hfdk3q9LBJmoK+lZ+yzZ5KYpOoxq7LF1BxE8g==
|
@@ -4500,10 +4507,10 @@ postcss@^7.0.0, postcss@^7.0.1, postcss@^7.0.14, postcss@^7.0.16, postcss@^7.0.5
|
|
4500
4507
|
source-map "^0.6.1"
|
4501
4508
|
supports-color "^6.1.0"
|
4502
4509
|
|
4503
|
-
postcss@^7.0.
|
4504
|
-
version "7.0.
|
4505
|
-
resolved "https://registry.yarnpkg.com/postcss/-/postcss-7.0.
|
4506
|
-
integrity sha512-
|
4510
|
+
postcss@^7.0.14, postcss@^7.0.16, postcss@^7.0.23, postcss@^7.0.5, postcss@^7.0.6:
|
4511
|
+
version "7.0.24"
|
4512
|
+
resolved "https://registry.yarnpkg.com/postcss/-/postcss-7.0.24.tgz#972c3c5be431b32e40caefe6c81b5a19117704c2"
|
4513
|
+
integrity sha512-Xl0XvdNWg+CblAXzNvbSOUvgJXwSjmbAKORqyw9V2AlHrm1js2gFw9y3jibBAhpKZi8b5JzJCVh/FyzPsTtgTA==
|
4507
4514
|
dependencies:
|
4508
4515
|
chalk "^2.4.2"
|
4509
4516
|
source-map "^0.6.1"
|
@@ -4840,13 +4847,20 @@ resolve-url@^0.2.1:
|
|
4840
4847
|
resolved "https://registry.yarnpkg.com/resolve-url/-/resolve-url-0.2.1.tgz#2c637fe77c893afd2a663fe21aa9080068e2052a"
|
4841
4848
|
integrity sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo=
|
4842
4849
|
|
4843
|
-
resolve@^1.10.0
|
4850
|
+
resolve@^1.10.0:
|
4844
4851
|
version "1.12.0"
|
4845
4852
|
resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.12.0.tgz#3fc644a35c84a48554609ff26ec52b66fa577df6"
|
4846
4853
|
integrity sha512-B/dOmuoAik5bKcD6s6nXDCjzUKnaDvdkRyAk6rsmsKLipWj4797iothd7jmmUhWTfinVMU+wc56rYKsit2Qy4w==
|
4847
4854
|
dependencies:
|
4848
4855
|
path-parse "^1.0.6"
|
4849
4856
|
|
4857
|
+
resolve@^1.3.2:
|
4858
|
+
version "1.13.1"
|
4859
|
+
resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.13.1.tgz#be0aa4c06acd53083505abb35f4d66932ab35d16"
|
4860
|
+
integrity sha512-CxqObCX8K8YtAhOBRg+lrcdn+LK+WYOS8tSjqSFbjtrI5PnS63QPhZl4+yKfrU9tdsbMu9Anr/amegT87M9Z6w==
|
4861
|
+
dependencies:
|
4862
|
+
path-parse "^1.0.6"
|
4863
|
+
|
4850
4864
|
ret@~0.1.10:
|
4851
4865
|
version "0.1.15"
|
4852
4866
|
resolved "https://registry.yarnpkg.com/ret/-/ret-0.1.15.tgz#b8a4825d5bdb1fc3f6f53c2bc33f81388681c7bc"
|
@@ -4941,14 +4955,6 @@ schema-utils@^1.0.0:
|
|
4941
4955
|
ajv-errors "^1.0.0"
|
4942
4956
|
ajv-keywords "^3.1.0"
|
4943
4957
|
|
4944
|
-
schema-utils@^2.0.0, schema-utils@^2.4.1:
|
4945
|
-
version "2.5.0"
|
4946
|
-
resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-2.5.0.tgz#8f254f618d402cc80257486213c8970edfd7c22f"
|
4947
|
-
integrity sha512-32ISrwW2scPXHUSusP8qMg5dLUawKkyV+/qIEV9JdXKx+rsM6mi8vZY8khg2M69Qom16rtroWXD3Ybtiws38gQ==
|
4948
|
-
dependencies:
|
4949
|
-
ajv "^6.10.2"
|
4950
|
-
ajv-keywords "^3.4.1"
|
4951
|
-
|
4952
4958
|
schema-utils@^2.1.0:
|
4953
4959
|
version "2.2.0"
|
4954
4960
|
resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-2.2.0.tgz#48a065ce219e0cacf4631473159037b2c1ae82da"
|
@@ -4957,6 +4963,22 @@ schema-utils@^2.1.0:
|
|
4957
4963
|
ajv "^6.10.2"
|
4958
4964
|
ajv-keywords "^3.4.1"
|
4959
4965
|
|
4966
|
+
schema-utils@^2.5.0:
|
4967
|
+
version "2.6.0"
|
4968
|
+
resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-2.6.0.tgz#68a259aabbef9d08d1252c2e63c398e476308e80"
|
4969
|
+
integrity sha512-UlPB1ME4i/71cih/Rv92gK8043CrJTc2mjkyxDp4pdJ7ZfzY0g0hdGjjDB23jX3X+NXSneCdQbScGhn6K2tbpQ==
|
4970
|
+
dependencies:
|
4971
|
+
ajv "^6.10.2"
|
4972
|
+
ajv-keywords "^3.4.1"
|
4973
|
+
|
4974
|
+
schema-utils@^2.6.0:
|
4975
|
+
version "2.6.1"
|
4976
|
+
resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-2.6.1.tgz#eb78f0b945c7bcfa2082b3565e8db3548011dc4f"
|
4977
|
+
integrity sha512-0WXHDs1VDJyo+Zqs9TKLKyD/h7yDpHUhEFsM2CzkICFdoX1av+GBq/J2xRTFfsQO5kBfhZzANf2VcIm84jqDbg==
|
4978
|
+
dependencies:
|
4979
|
+
ajv "^6.10.2"
|
4980
|
+
ajv-keywords "^3.4.1"
|
4981
|
+
|
4960
4982
|
scss-tokenizer@^0.2.3:
|
4961
4983
|
version "0.2.3"
|
4962
4984
|
resolved "https://registry.yarnpkg.com/scss-tokenizer/-/scss-tokenizer-0.2.3.tgz#8eb06db9a9723333824d3f5530641149847ce5d1"
|
@@ -4995,10 +5017,10 @@ serialize-javascript@^1.7.0:
|
|
4995
5017
|
resolved "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-1.9.1.tgz#cfc200aef77b600c47da9bb8149c943e798c2fdb"
|
4996
5018
|
integrity sha512-0Vb/54WJ6k5v8sSWN09S0ora+Hnr+cX40r9F170nT+mSkaxltoE/7R3OrIdBSUv1OoiobH1QoWQbCnAO+e8J1A==
|
4997
5019
|
|
4998
|
-
serialize-javascript@^2.1.
|
4999
|
-
version "2.1.
|
5000
|
-
resolved "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-2.1.
|
5001
|
-
integrity sha512-
|
5020
|
+
serialize-javascript@^2.1.2:
|
5021
|
+
version "2.1.2"
|
5022
|
+
resolved "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-2.1.2.tgz#ecec53b0e0317bdc95ef76ab7074b7384785fa61"
|
5023
|
+
integrity sha512-rs9OggEUF0V4jUSecXazOYsLfu7OGK2qIn3c7IPBiffz32XniEp/TX9Xmc9LQfK2nQ2QKHvZ2oygKUGU0lG4jQ==
|
5002
5024
|
|
5003
5025
|
set-blocking@^2.0.0, set-blocking@~2.0.0:
|
5004
5026
|
version "2.0.0"
|
@@ -5566,9 +5588,9 @@ typedarray@^0.0.6:
|
|
5566
5588
|
integrity sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c=
|
5567
5589
|
|
5568
5590
|
uglify-js@^3.6.0:
|
5569
|
-
version "3.
|
5570
|
-
resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.
|
5571
|
-
integrity sha512-
|
5591
|
+
version "3.7.2"
|
5592
|
+
resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.7.2.tgz#cb1a601e67536e9ed094a92dd1e333459643d3f9"
|
5593
|
+
integrity sha512-uhRwZcANNWVLrxLfNFEdltoPNhECUR3lc+UdJoG9CBpMcSnKyWA94tc3eAujB1GcMY5Uwq8ZMp4qWpxWYDQmaA==
|
5572
5594
|
dependencies:
|
5573
5595
|
commander "~2.20.3"
|
5574
5596
|
source-map "~0.6.1"
|
@@ -5676,13 +5698,13 @@ urix@^0.1.0:
|
|
5676
5698
|
integrity sha1-2pN/emLiH+wf0Y1Js1wpNQZ6bHI=
|
5677
5699
|
|
5678
5700
|
url-loader@^2.1.0:
|
5679
|
-
version "2.
|
5680
|
-
resolved "https://registry.yarnpkg.com/url-loader/-/url-loader-2.
|
5681
|
-
integrity sha512-
|
5701
|
+
version "2.3.0"
|
5702
|
+
resolved "https://registry.yarnpkg.com/url-loader/-/url-loader-2.3.0.tgz#e0e2ef658f003efb8ca41b0f3ffbf76bab88658b"
|
5703
|
+
integrity sha512-goSdg8VY+7nPZKUEChZSEtW5gjbS66USIGCeSJ1OVOJ7Yfuh/36YxCwMi5HVEJh6mqUYOoy3NJ0vlOMrWsSHog==
|
5682
5704
|
dependencies:
|
5683
5705
|
loader-utils "^1.2.3"
|
5684
5706
|
mime "^2.4.4"
|
5685
|
-
schema-utils "^2.
|
5707
|
+
schema-utils "^2.5.0"
|
5686
5708
|
|
5687
5709
|
url@^0.11.0:
|
5688
5710
|
version "0.11.0"
|