shopify_app 13.3.0 → 14.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.github/PULL_REQUEST_TEMPLATE.md +6 -0
- data/.travis.yml +0 -1
- data/CHANGELOG.md +22 -0
- data/README.md +12 -3
- data/app/assets/javascripts/shopify_app/app_bridge_redirect.js +18 -0
- data/app/assets/javascripts/shopify_app/redirect.js +4 -9
- data/app/assets/javascripts/shopify_app/storage_access.js +3 -11
- data/app/controllers/concerns/shopify_app/authenticated.rb +1 -0
- data/app/controllers/shopify_app/callback_controller.rb +2 -2
- data/app/views/shopify_app/sessions/enable_cookies.html.erb +6 -6
- data/app/views/shopify_app/sessions/request_storage_access.html.erb +5 -0
- data/app/views/shopify_app/shared/redirect.html.erb +6 -1
- data/docs/Quickstart.md +2 -3
- data/docs/Releasing.md +12 -12
- data/lib/generators/shopify_app/authenticated_controller/authenticated_controller_generator.rb +1 -1
- data/lib/generators/shopify_app/home_controller/home_controller_generator.rb +20 -2
- data/lib/generators/shopify_app/home_controller/templates/index.html.erb +67 -17
- data/lib/generators/shopify_app/home_controller/templates/unauthenticated_home_controller.rb +10 -0
- data/lib/generators/shopify_app/install/templates/embedded_app.html.erb +1 -1
- data/lib/generators/shopify_app/install/templates/flash_messages.js +0 -2
- data/lib/generators/shopify_app/install/templates/shopify_app.rb.tt +1 -0
- data/lib/generators/shopify_app/products_controller/products_controller_generator.rb +19 -0
- data/lib/generators/shopify_app/products_controller/templates/products_controller.rb +8 -0
- data/lib/generators/shopify_app/shopify_app_generator.rb +1 -1
- data/lib/shopify_app.rb +1 -0
- data/lib/shopify_app/controller_concerns/csrf_protection.rb +15 -0
- data/lib/shopify_app/controller_concerns/login_protection.rb +8 -0
- data/lib/shopify_app/version.rb +1 -1
- data/package-lock.json +7 -75
- data/package.json +2 -2
- data/shopify_app.gemspec +2 -2
- data/yarn.lock +248 -178
- metadata +11 -5
@@ -9,6 +9,7 @@ ShopifyApp.configure do |config|
|
|
9
9
|
config.after_authenticate_job = false
|
10
10
|
config.api_version = "<%= @api_version %>"
|
11
11
|
config.shop_session_repository = 'Shop'
|
12
|
+
config.allow_jwt_authentication = true
|
12
13
|
end
|
13
14
|
|
14
15
|
# ShopifyApp::Utils.fetch_known_api_versions # Uncomment to fetch known api versions from shopify servers on boot
|
@@ -0,0 +1,19 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require 'rails/generators/base'
|
4
|
+
|
5
|
+
module ShopifyApp
|
6
|
+
module Generators
|
7
|
+
class ProductsControllerGenerator < Rails::Generators::Base
|
8
|
+
source_root File.expand_path('../templates', __FILE__)
|
9
|
+
|
10
|
+
def create_products_controller
|
11
|
+
template('products_controller.rb', 'app/controllers/products_controller.rb')
|
12
|
+
end
|
13
|
+
|
14
|
+
def add_products_route
|
15
|
+
route("get '/products', :to => 'products#index'")
|
16
|
+
end
|
17
|
+
end
|
18
|
+
end
|
19
|
+
end
|
@@ -11,7 +11,7 @@ module ShopifyApp
|
|
11
11
|
generate("shopify_app:install #{@opts.join(' ')}")
|
12
12
|
generate("shopify_app:shop_model")
|
13
13
|
generate("shopify_app:authenticated_controller")
|
14
|
-
generate("shopify_app:home_controller")
|
14
|
+
generate("shopify_app:home_controller #{@opts.join(' ')}")
|
15
15
|
end
|
16
16
|
end
|
17
17
|
end
|
data/lib/shopify_app.rb
CHANGED
@@ -27,6 +27,7 @@ module ShopifyApp
|
|
27
27
|
require 'shopify_app/utils'
|
28
28
|
|
29
29
|
# controller concerns
|
30
|
+
require 'shopify_app/controller_concerns/csrf_protection'
|
30
31
|
require 'shopify_app/controller_concerns/localization'
|
31
32
|
require 'shopify_app/controller_concerns/itp'
|
32
33
|
require 'shopify_app/controller_concerns/login_protection'
|
@@ -0,0 +1,15 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
module ShopifyApp
|
3
|
+
module CsrfProtection
|
4
|
+
extend ActiveSupport::Concern
|
5
|
+
included do
|
6
|
+
protect_from_forgery with: :exception, unless: :valid_session_token?
|
7
|
+
end
|
8
|
+
|
9
|
+
private
|
10
|
+
|
11
|
+
def valid_session_token?
|
12
|
+
request.env['jwt.shopify_domain']
|
13
|
+
end
|
14
|
+
end
|
15
|
+
end
|
@@ -14,6 +14,8 @@ module ShopifyApp
|
|
14
14
|
rescue_from ActiveResource::UnauthorizedAccess, with: :close_session
|
15
15
|
end
|
16
16
|
|
17
|
+
ACCESS_TOKEN_REQUIRED_HEADER = 'X-Shopify-API-Request-Failure-Unauthorized'
|
18
|
+
|
17
19
|
def activate_shopify_session
|
18
20
|
return redirect_to_login if current_shopify_session.blank?
|
19
21
|
clear_top_level_oauth_cookie
|
@@ -80,6 +82,10 @@ module ShopifyApp
|
|
80
82
|
end
|
81
83
|
end
|
82
84
|
|
85
|
+
def signal_access_token_required
|
86
|
+
response.set_header(ACCESS_TOKEN_REQUIRED_HEADER, true)
|
87
|
+
end
|
88
|
+
|
83
89
|
protected
|
84
90
|
|
85
91
|
def jwt_shopify_domain
|
@@ -204,6 +210,8 @@ module ShopifyApp
|
|
204
210
|
def return_address
|
205
211
|
return base_return_address unless ShopifyApp.configuration.allow_jwt_authentication
|
206
212
|
return_address_with_params(shop: current_shopify_domain)
|
213
|
+
rescue ShopifyDomainNotFound
|
214
|
+
base_return_address
|
207
215
|
end
|
208
216
|
|
209
217
|
def base_return_address
|
data/lib/shopify_app/version.rb
CHANGED
data/package-lock.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "shopify_app",
|
3
|
-
"version": "13.
|
3
|
+
"version": "13.6.0",
|
4
4
|
"lockfileVersion": 1,
|
5
5
|
"requires": true,
|
6
6
|
"dependencies": {
|
@@ -53,12 +53,6 @@
|
|
53
53
|
"minimist": "^1.2.0"
|
54
54
|
}
|
55
55
|
},
|
56
|
-
"lodash": {
|
57
|
-
"version": "4.17.15",
|
58
|
-
"resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.15.tgz",
|
59
|
-
"integrity": "sha512-8xOcRHvCjnocdS5cpwXQXVzmmh5e5+saE2QGoeQmbKmRS6J3VQppPOIt0MnmE+4xlZoumy0GPG0D0MVIQbNA1A==",
|
60
|
-
"dev": true
|
61
|
-
},
|
62
56
|
"ms": {
|
63
57
|
"version": "2.1.2",
|
64
58
|
"resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz",
|
@@ -78,14 +72,6 @@
|
|
78
72
|
"lodash": "^4.17.13",
|
79
73
|
"source-map": "^0.5.0",
|
80
74
|
"trim-right": "^1.0.1"
|
81
|
-
},
|
82
|
-
"dependencies": {
|
83
|
-
"lodash": {
|
84
|
-
"version": "4.17.15",
|
85
|
-
"resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.15.tgz",
|
86
|
-
"integrity": "sha512-8xOcRHvCjnocdS5cpwXQXVzmmh5e5+saE2QGoeQmbKmRS6J3VQppPOIt0MnmE+4xlZoumy0GPG0D0MVIQbNA1A==",
|
87
|
-
"dev": true
|
88
|
-
}
|
89
75
|
}
|
90
76
|
},
|
91
77
|
"@babel/helper-annotate-as-pure": {
|
@@ -151,14 +137,6 @@
|
|
151
137
|
"@babel/helper-function-name": "^7.1.0",
|
152
138
|
"@babel/types": "^7.5.5",
|
153
139
|
"lodash": "^4.17.13"
|
154
|
-
},
|
155
|
-
"dependencies": {
|
156
|
-
"lodash": {
|
157
|
-
"version": "4.17.15",
|
158
|
-
"resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.15.tgz",
|
159
|
-
"integrity": "sha512-8xOcRHvCjnocdS5cpwXQXVzmmh5e5+saE2QGoeQmbKmRS6J3VQppPOIt0MnmE+4xlZoumy0GPG0D0MVIQbNA1A==",
|
160
|
-
"dev": true
|
161
|
-
}
|
162
140
|
}
|
163
141
|
},
|
164
142
|
"@babel/helper-explode-assignable-expression": {
|
@@ -230,14 +208,6 @@
|
|
230
208
|
"@babel/template": "^7.4.4",
|
231
209
|
"@babel/types": "^7.5.5",
|
232
210
|
"lodash": "^4.17.13"
|
233
|
-
},
|
234
|
-
"dependencies": {
|
235
|
-
"lodash": {
|
236
|
-
"version": "4.17.15",
|
237
|
-
"resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.15.tgz",
|
238
|
-
"integrity": "sha512-8xOcRHvCjnocdS5cpwXQXVzmmh5e5+saE2QGoeQmbKmRS6J3VQppPOIt0MnmE+4xlZoumy0GPG0D0MVIQbNA1A==",
|
239
|
-
"dev": true
|
240
|
-
}
|
241
211
|
}
|
242
212
|
},
|
243
213
|
"@babel/helper-optimise-call-expression": {
|
@@ -262,14 +232,6 @@
|
|
262
232
|
"dev": true,
|
263
233
|
"requires": {
|
264
234
|
"lodash": "^4.17.13"
|
265
|
-
},
|
266
|
-
"dependencies": {
|
267
|
-
"lodash": {
|
268
|
-
"version": "4.17.15",
|
269
|
-
"resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.15.tgz",
|
270
|
-
"integrity": "sha512-8xOcRHvCjnocdS5cpwXQXVzmmh5e5+saE2QGoeQmbKmRS6J3VQppPOIt0MnmE+4xlZoumy0GPG0D0MVIQbNA1A==",
|
271
|
-
"dev": true
|
272
|
-
}
|
273
235
|
}
|
274
236
|
},
|
275
237
|
"@babel/helper-remap-async-to-generator": {
|
@@ -598,14 +560,6 @@
|
|
598
560
|
"requires": {
|
599
561
|
"@babel/helper-plugin-utils": "^7.0.0",
|
600
562
|
"lodash": "^4.17.13"
|
601
|
-
},
|
602
|
-
"dependencies": {
|
603
|
-
"lodash": {
|
604
|
-
"version": "4.17.15",
|
605
|
-
"resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.15.tgz",
|
606
|
-
"integrity": "sha512-8xOcRHvCjnocdS5cpwXQXVzmmh5e5+saE2QGoeQmbKmRS6J3VQppPOIt0MnmE+4xlZoumy0GPG0D0MVIQbNA1A==",
|
607
|
-
"dev": true
|
608
|
-
}
|
609
563
|
}
|
610
564
|
},
|
611
565
|
"@babel/plugin-transform-classes": {
|
@@ -1056,12 +1010,6 @@
|
|
1056
1010
|
"ms": "^2.1.1"
|
1057
1011
|
}
|
1058
1012
|
},
|
1059
|
-
"lodash": {
|
1060
|
-
"version": "4.17.15",
|
1061
|
-
"resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.15.tgz",
|
1062
|
-
"integrity": "sha512-8xOcRHvCjnocdS5cpwXQXVzmmh5e5+saE2QGoeQmbKmRS6J3VQppPOIt0MnmE+4xlZoumy0GPG0D0MVIQbNA1A==",
|
1063
|
-
"dev": true
|
1064
|
-
},
|
1065
1013
|
"ms": {
|
1066
1014
|
"version": "2.1.2",
|
1067
1015
|
"resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz",
|
@@ -1079,14 +1027,6 @@
|
|
1079
1027
|
"esutils": "^2.0.2",
|
1080
1028
|
"lodash": "^4.17.13",
|
1081
1029
|
"to-fast-properties": "^2.0.0"
|
1082
|
-
},
|
1083
|
-
"dependencies": {
|
1084
|
-
"lodash": {
|
1085
|
-
"version": "4.17.15",
|
1086
|
-
"resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.15.tgz",
|
1087
|
-
"integrity": "sha512-8xOcRHvCjnocdS5cpwXQXVzmmh5e5+saE2QGoeQmbKmRS6J3VQppPOIt0MnmE+4xlZoumy0GPG0D0MVIQbNA1A==",
|
1088
|
-
"dev": true
|
1089
|
-
}
|
1090
1030
|
}
|
1091
1031
|
},
|
1092
1032
|
"@sinonjs/commons": {
|
@@ -1117,14 +1057,6 @@
|
|
1117
1057
|
"@sinonjs/commons": "^1.3.0",
|
1118
1058
|
"array-from": "^2.1.1",
|
1119
1059
|
"lodash": "^4.17.15"
|
1120
|
-
},
|
1121
|
-
"dependencies": {
|
1122
|
-
"lodash": {
|
1123
|
-
"version": "4.17.15",
|
1124
|
-
"resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.15.tgz",
|
1125
|
-
"integrity": "sha512-8xOcRHvCjnocdS5cpwXQXVzmmh5e5+saE2QGoeQmbKmRS6J3VQppPOIt0MnmE+4xlZoumy0GPG0D0MVIQbNA1A==",
|
1126
|
-
"dev": true
|
1127
|
-
}
|
1128
1060
|
}
|
1129
1061
|
},
|
1130
1062
|
"@sinonjs/text-encoding": {
|
@@ -2600,9 +2532,9 @@
|
|
2600
2532
|
"dev": true
|
2601
2533
|
},
|
2602
2534
|
"elliptic": {
|
2603
|
-
"version": "6.5.
|
2604
|
-
"resolved": "https://registry.npmjs.org/elliptic/-/elliptic-6.5.
|
2605
|
-
"integrity": "sha512-
|
2535
|
+
"version": "6.5.3",
|
2536
|
+
"resolved": "https://registry.npmjs.org/elliptic/-/elliptic-6.5.3.tgz",
|
2537
|
+
"integrity": "sha512-IMqzv5wNQf+E6aHeIqATs0tOLeOTwj1QKbRcS3jBbYkl5oLAserA8yJTT7/VyHUYG91PRmPyeQDObKLPpeS4dw==",
|
2606
2538
|
"dev": true,
|
2607
2539
|
"requires": {
|
2608
2540
|
"bn.js": "^4.4.0",
|
@@ -4579,9 +4511,9 @@
|
|
4579
4511
|
}
|
4580
4512
|
},
|
4581
4513
|
"lodash": {
|
4582
|
-
"version": "4.17.
|
4583
|
-
"resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.
|
4584
|
-
"integrity": "sha512-
|
4514
|
+
"version": "4.17.19",
|
4515
|
+
"resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.19.tgz",
|
4516
|
+
"integrity": "sha512-JNvd8XER9GQX0v2qJgsaN/mzFCNA5BRe/j8JN9d+tWyGLSodKQHKFicdwNYzWwI3wjRnaKPsGj1XkBjx/F96DQ==",
|
4585
4517
|
"dev": true
|
4586
4518
|
},
|
4587
4519
|
"log-symbols": {
|
data/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "shopify_app",
|
3
|
-
"version": "
|
3
|
+
"version": "14.1.0",
|
4
4
|
"repository": "git@github.com:Shopify/shopify_app.git",
|
5
5
|
"author": "Shopify",
|
6
6
|
"license": "MIT",
|
@@ -20,7 +20,7 @@
|
|
20
20
|
"mocha-debug": "^0.0.1",
|
21
21
|
"sinon": "^7.4.2",
|
22
22
|
"sinon-chai": "^3.2.0",
|
23
|
-
"webpack": "^4.
|
23
|
+
"webpack": "^4.44.1"
|
24
24
|
},
|
25
25
|
"scripts": {
|
26
26
|
"test": "./node_modules/.bin/karma start --browsers ChromeHeadless --single-run"
|
data/shopify_app.gemspec
CHANGED
@@ -9,13 +9,13 @@ Gem::Specification.new do |s|
|
|
9
9
|
s.author = "Shopify"
|
10
10
|
s.summary = 'This gem is used to get quickly started with the Shopify API'
|
11
11
|
|
12
|
-
s.required_ruby_version = ">= 2.
|
12
|
+
s.required_ruby_version = ">= 2.5"
|
13
13
|
|
14
14
|
s.metadata['allowed_push_host'] = 'https://rubygems.org'
|
15
15
|
|
16
16
|
s.add_runtime_dependency('browser_sniffer', '~> 1.2.2')
|
17
17
|
s.add_runtime_dependency('rails', '> 5.2.1')
|
18
|
-
s.add_runtime_dependency('shopify_api', '~> 9.1
|
18
|
+
s.add_runtime_dependency('shopify_api', '~> 9.1')
|
19
19
|
s.add_runtime_dependency('omniauth-shopify-oauth2', '~> 2.2.2')
|
20
20
|
s.add_runtime_dependency('jwt', '~> 2.2.1')
|
21
21
|
s.add_runtime_dependency('redirect_safely', '~> 1.0')
|
data/yarn.lock
CHANGED
@@ -824,150 +824,149 @@
|
|
824
824
|
resolved "https://registry.yarnpkg.com/@sinonjs/text-encoding/-/text-encoding-0.7.1.tgz#8da5c6530915653f3a1f38fd5f101d8c3f8079c5"
|
825
825
|
integrity sha512-+iTbntw2IZPb/anVDbypzfQa+ay64MW0Zo8aJ8gZPWMMK6/OubMVb6lUPMagqjOPnmtauXnFCACVl3O7ogjeqQ==
|
826
826
|
|
827
|
-
"@webassemblyjs/ast@1.
|
828
|
-
version "1.
|
829
|
-
resolved "https://registry.yarnpkg.com/@webassemblyjs/ast/-/ast-1.
|
830
|
-
integrity sha512-
|
831
|
-
dependencies:
|
832
|
-
"@webassemblyjs/helper-module-context" "1.
|
833
|
-
"@webassemblyjs/helper-wasm-bytecode" "1.
|
834
|
-
"@webassemblyjs/wast-parser" "1.
|
835
|
-
|
836
|
-
"@webassemblyjs/floating-point-hex-parser@1.
|
837
|
-
version "1.
|
838
|
-
resolved "https://registry.yarnpkg.com/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.
|
839
|
-
integrity sha512-
|
840
|
-
|
841
|
-
"@webassemblyjs/helper-api-error@1.
|
842
|
-
version "1.
|
843
|
-
resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-api-error/-/helper-api-error-1.
|
844
|
-
integrity sha512-
|
845
|
-
|
846
|
-
"@webassemblyjs/helper-buffer@1.
|
847
|
-
version "1.
|
848
|
-
resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-buffer/-/helper-buffer-1.
|
849
|
-
integrity sha512-
|
850
|
-
|
851
|
-
"@webassemblyjs/helper-code-frame@1.
|
852
|
-
version "1.
|
853
|
-
resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-code-frame/-/helper-code-frame-1.
|
854
|
-
integrity sha512-
|
855
|
-
dependencies:
|
856
|
-
"@webassemblyjs/wast-printer" "1.
|
857
|
-
|
858
|
-
"@webassemblyjs/helper-fsm@1.
|
859
|
-
version "1.
|
860
|
-
resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-fsm/-/helper-fsm-1.
|
861
|
-
integrity sha512-
|
862
|
-
|
863
|
-
"@webassemblyjs/helper-module-context@1.
|
864
|
-
version "1.
|
865
|
-
resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-module-context/-/helper-module-context-1.
|
866
|
-
integrity sha512
|
867
|
-
dependencies:
|
868
|
-
"@webassemblyjs/ast" "1.
|
869
|
-
|
870
|
-
|
871
|
-
"
|
872
|
-
|
873
|
-
|
874
|
-
|
875
|
-
|
876
|
-
"
|
877
|
-
|
878
|
-
|
879
|
-
|
880
|
-
|
881
|
-
"@webassemblyjs/
|
882
|
-
"@webassemblyjs/helper-
|
883
|
-
"@webassemblyjs/
|
884
|
-
|
885
|
-
|
886
|
-
"
|
887
|
-
|
888
|
-
|
889
|
-
integrity sha512-aaCvQYrvKbY/n6wKHb/ylAJr27GglahUO89CcGXMItrOBqRarUMxWLJgxm9PJNuKULwN5n1csT9bYoMeZOGF3g==
|
827
|
+
"@webassemblyjs/ast@1.9.0":
|
828
|
+
version "1.9.0"
|
829
|
+
resolved "https://registry.yarnpkg.com/@webassemblyjs/ast/-/ast-1.9.0.tgz#bd850604b4042459a5a41cd7d338cbed695ed964"
|
830
|
+
integrity sha512-C6wW5L+b7ogSDVqymbkkvuW9kruN//YisMED04xzeBBqjHa2FYnmvOlS6Xj68xWQRgWvI9cIglsjFowH/RJyEA==
|
831
|
+
dependencies:
|
832
|
+
"@webassemblyjs/helper-module-context" "1.9.0"
|
833
|
+
"@webassemblyjs/helper-wasm-bytecode" "1.9.0"
|
834
|
+
"@webassemblyjs/wast-parser" "1.9.0"
|
835
|
+
|
836
|
+
"@webassemblyjs/floating-point-hex-parser@1.9.0":
|
837
|
+
version "1.9.0"
|
838
|
+
resolved "https://registry.yarnpkg.com/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.9.0.tgz#3c3d3b271bddfc84deb00f71344438311d52ffb4"
|
839
|
+
integrity sha512-TG5qcFsS8QB4g4MhrxK5TqfdNe7Ey/7YL/xN+36rRjl/BlGE/NcBvJcqsRgCP6Z92mRE+7N50pRIi8SmKUbcQA==
|
840
|
+
|
841
|
+
"@webassemblyjs/helper-api-error@1.9.0":
|
842
|
+
version "1.9.0"
|
843
|
+
resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-api-error/-/helper-api-error-1.9.0.tgz#203f676e333b96c9da2eeab3ccef33c45928b6a2"
|
844
|
+
integrity sha512-NcMLjoFMXpsASZFxJ5h2HZRcEhDkvnNFOAKneP5RbKRzaWJN36NC4jqQHKwStIhGXu5mUWlUUk7ygdtrO8lbmw==
|
845
|
+
|
846
|
+
"@webassemblyjs/helper-buffer@1.9.0":
|
847
|
+
version "1.9.0"
|
848
|
+
resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-buffer/-/helper-buffer-1.9.0.tgz#a1442d269c5feb23fcbc9ef759dac3547f29de00"
|
849
|
+
integrity sha512-qZol43oqhq6yBPx7YM3m9Bv7WMV9Eevj6kMi6InKOuZxhw+q9hOkvq5e/PpKSiLfyetpaBnogSbNCfBwyB00CA==
|
850
|
+
|
851
|
+
"@webassemblyjs/helper-code-frame@1.9.0":
|
852
|
+
version "1.9.0"
|
853
|
+
resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-code-frame/-/helper-code-frame-1.9.0.tgz#647f8892cd2043a82ac0c8c5e75c36f1d9159f27"
|
854
|
+
integrity sha512-ERCYdJBkD9Vu4vtjUYe8LZruWuNIToYq/ME22igL+2vj2dQ2OOujIZr3MEFvfEaqKoVqpsFKAGsRdBSBjrIvZA==
|
855
|
+
dependencies:
|
856
|
+
"@webassemblyjs/wast-printer" "1.9.0"
|
857
|
+
|
858
|
+
"@webassemblyjs/helper-fsm@1.9.0":
|
859
|
+
version "1.9.0"
|
860
|
+
resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-fsm/-/helper-fsm-1.9.0.tgz#c05256b71244214671f4b08ec108ad63b70eddb8"
|
861
|
+
integrity sha512-OPRowhGbshCb5PxJ8LocpdX9Kl0uB4XsAjl6jH/dWKlk/mzsANvhwbiULsaiqT5GZGT9qinTICdj6PLuM5gslw==
|
862
|
+
|
863
|
+
"@webassemblyjs/helper-module-context@1.9.0":
|
864
|
+
version "1.9.0"
|
865
|
+
resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-module-context/-/helper-module-context-1.9.0.tgz#25d8884b76839871a08a6c6f806c3979ef712f07"
|
866
|
+
integrity sha512-MJCW8iGC08tMk2enck1aPW+BE5Cw8/7ph/VGZxwyvGbJwjktKkDK7vy7gAmMDx88D7mhDTCNKAW5tED+gZ0W8g==
|
867
|
+
dependencies:
|
868
|
+
"@webassemblyjs/ast" "1.9.0"
|
869
|
+
|
870
|
+
"@webassemblyjs/helper-wasm-bytecode@1.9.0":
|
871
|
+
version "1.9.0"
|
872
|
+
resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.9.0.tgz#4fed8beac9b8c14f8c58b70d124d549dd1fe5790"
|
873
|
+
integrity sha512-R7FStIzyNcd7xKxCZH5lE0Bqy+hGTwS3LJjuv1ZVxd9O7eHCedSdrId/hMOd20I+v8wDXEn+bjfKDLzTepoaUw==
|
874
|
+
|
875
|
+
"@webassemblyjs/helper-wasm-section@1.9.0":
|
876
|
+
version "1.9.0"
|
877
|
+
resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.9.0.tgz#5a4138d5a6292ba18b04c5ae49717e4167965346"
|
878
|
+
integrity sha512-XnMB8l3ek4tvrKUUku+IVaXNHz2YsJyOOmz+MMkZvh8h1uSJpSen6vYnw3IoQ7WwEuAhL8Efjms1ZWjqh2agvw==
|
879
|
+
dependencies:
|
880
|
+
"@webassemblyjs/ast" "1.9.0"
|
881
|
+
"@webassemblyjs/helper-buffer" "1.9.0"
|
882
|
+
"@webassemblyjs/helper-wasm-bytecode" "1.9.0"
|
883
|
+
"@webassemblyjs/wasm-gen" "1.9.0"
|
884
|
+
|
885
|
+
"@webassemblyjs/ieee754@1.9.0":
|
886
|
+
version "1.9.0"
|
887
|
+
resolved "https://registry.yarnpkg.com/@webassemblyjs/ieee754/-/ieee754-1.9.0.tgz#15c7a0fbaae83fb26143bbacf6d6df1702ad39e4"
|
888
|
+
integrity sha512-dcX8JuYU/gvymzIHc9DgxTzUUTLexWwt8uCTWP3otys596io0L5aW02Gb1RjYpx2+0Jus1h4ZFqjla7umFniTg==
|
890
889
|
dependencies:
|
891
890
|
"@xtuc/ieee754" "^1.2.0"
|
892
891
|
|
893
|
-
"@webassemblyjs/leb128@1.
|
894
|
-
version "1.
|
895
|
-
resolved "https://registry.yarnpkg.com/@webassemblyjs/leb128/-/leb128-1.
|
896
|
-
integrity sha512-
|
892
|
+
"@webassemblyjs/leb128@1.9.0":
|
893
|
+
version "1.9.0"
|
894
|
+
resolved "https://registry.yarnpkg.com/@webassemblyjs/leb128/-/leb128-1.9.0.tgz#f19ca0b76a6dc55623a09cffa769e838fa1e1c95"
|
895
|
+
integrity sha512-ENVzM5VwV1ojs9jam6vPys97B/S65YQtv/aanqnU7D8aSoHFX8GyhGg0CMfyKNIHBuAVjy3tlzd5QMMINa7wpw==
|
897
896
|
dependencies:
|
898
897
|
"@xtuc/long" "4.2.2"
|
899
898
|
|
900
|
-
"@webassemblyjs/utf8@1.
|
901
|
-
version "1.
|
902
|
-
resolved "https://registry.yarnpkg.com/@webassemblyjs/utf8/-/utf8-1.
|
903
|
-
integrity sha512-
|
904
|
-
|
905
|
-
"@webassemblyjs/wasm-edit@1.
|
906
|
-
version "1.
|
907
|
-
resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-edit/-/wasm-edit-1.
|
908
|
-
integrity sha512-
|
909
|
-
dependencies:
|
910
|
-
"@webassemblyjs/ast" "1.
|
911
|
-
"@webassemblyjs/helper-buffer" "1.
|
912
|
-
"@webassemblyjs/helper-wasm-bytecode" "1.
|
913
|
-
"@webassemblyjs/helper-wasm-section" "1.
|
914
|
-
"@webassemblyjs/wasm-gen" "1.
|
915
|
-
"@webassemblyjs/wasm-opt" "1.
|
916
|
-
"@webassemblyjs/wasm-parser" "1.
|
917
|
-
"@webassemblyjs/wast-printer" "1.
|
918
|
-
|
919
|
-
"@webassemblyjs/wasm-gen@1.
|
920
|
-
version "1.
|
921
|
-
resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-gen/-/wasm-gen-1.
|
922
|
-
integrity sha512-
|
923
|
-
dependencies:
|
924
|
-
"@webassemblyjs/ast" "1.
|
925
|
-
"@webassemblyjs/helper-wasm-bytecode" "1.
|
926
|
-
"@webassemblyjs/ieee754" "1.
|
927
|
-
"@webassemblyjs/leb128" "1.
|
928
|
-
"@webassemblyjs/utf8" "1.
|
929
|
-
|
930
|
-
"@webassemblyjs/wasm-opt@1.
|
931
|
-
version "1.
|
932
|
-
resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-opt/-/wasm-opt-1.
|
933
|
-
integrity sha512-
|
934
|
-
dependencies:
|
935
|
-
"@webassemblyjs/ast" "1.
|
936
|
-
"@webassemblyjs/helper-buffer" "1.
|
937
|
-
"@webassemblyjs/wasm-gen" "1.
|
938
|
-
"@webassemblyjs/wasm-parser" "1.
|
939
|
-
|
940
|
-
"@webassemblyjs/wasm-parser@1.
|
941
|
-
version "1.
|
942
|
-
resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-parser/-/wasm-parser-1.
|
943
|
-
integrity sha512-
|
944
|
-
dependencies:
|
945
|
-
"@webassemblyjs/ast" "1.
|
946
|
-
"@webassemblyjs/helper-api-error" "1.
|
947
|
-
"@webassemblyjs/helper-wasm-bytecode" "1.
|
948
|
-
"@webassemblyjs/ieee754" "1.
|
949
|
-
"@webassemblyjs/leb128" "1.
|
950
|
-
"@webassemblyjs/utf8" "1.
|
951
|
-
|
952
|
-
"@webassemblyjs/wast-parser@1.
|
953
|
-
version "1.
|
954
|
-
resolved "https://registry.yarnpkg.com/@webassemblyjs/wast-parser/-/wast-parser-1.
|
955
|
-
integrity sha512-
|
956
|
-
dependencies:
|
957
|
-
"@webassemblyjs/ast" "1.
|
958
|
-
"@webassemblyjs/floating-point-hex-parser" "1.
|
959
|
-
"@webassemblyjs/helper-api-error" "1.
|
960
|
-
"@webassemblyjs/helper-code-frame" "1.
|
961
|
-
"@webassemblyjs/helper-fsm" "1.
|
899
|
+
"@webassemblyjs/utf8@1.9.0":
|
900
|
+
version "1.9.0"
|
901
|
+
resolved "https://registry.yarnpkg.com/@webassemblyjs/utf8/-/utf8-1.9.0.tgz#04d33b636f78e6a6813227e82402f7637b6229ab"
|
902
|
+
integrity sha512-GZbQlWtopBTP0u7cHrEx+73yZKrQoBMpwkGEIqlacljhXCkVM1kMQge/Mf+csMJAjEdSwhOyLAS0AoR3AG5P8w==
|
903
|
+
|
904
|
+
"@webassemblyjs/wasm-edit@1.9.0":
|
905
|
+
version "1.9.0"
|
906
|
+
resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-edit/-/wasm-edit-1.9.0.tgz#3fe6d79d3f0f922183aa86002c42dd256cfee9cf"
|
907
|
+
integrity sha512-FgHzBm80uwz5M8WKnMTn6j/sVbqilPdQXTWraSjBwFXSYGirpkSWE2R9Qvz9tNiTKQvoKILpCuTjBKzOIm0nxw==
|
908
|
+
dependencies:
|
909
|
+
"@webassemblyjs/ast" "1.9.0"
|
910
|
+
"@webassemblyjs/helper-buffer" "1.9.0"
|
911
|
+
"@webassemblyjs/helper-wasm-bytecode" "1.9.0"
|
912
|
+
"@webassemblyjs/helper-wasm-section" "1.9.0"
|
913
|
+
"@webassemblyjs/wasm-gen" "1.9.0"
|
914
|
+
"@webassemblyjs/wasm-opt" "1.9.0"
|
915
|
+
"@webassemblyjs/wasm-parser" "1.9.0"
|
916
|
+
"@webassemblyjs/wast-printer" "1.9.0"
|
917
|
+
|
918
|
+
"@webassemblyjs/wasm-gen@1.9.0":
|
919
|
+
version "1.9.0"
|
920
|
+
resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-gen/-/wasm-gen-1.9.0.tgz#50bc70ec68ded8e2763b01a1418bf43491a7a49c"
|
921
|
+
integrity sha512-cPE3o44YzOOHvlsb4+E9qSqjc9Qf9Na1OO/BHFy4OI91XDE14MjFN4lTMezzaIWdPqHnsTodGGNP+iRSYfGkjA==
|
922
|
+
dependencies:
|
923
|
+
"@webassemblyjs/ast" "1.9.0"
|
924
|
+
"@webassemblyjs/helper-wasm-bytecode" "1.9.0"
|
925
|
+
"@webassemblyjs/ieee754" "1.9.0"
|
926
|
+
"@webassemblyjs/leb128" "1.9.0"
|
927
|
+
"@webassemblyjs/utf8" "1.9.0"
|
928
|
+
|
929
|
+
"@webassemblyjs/wasm-opt@1.9.0":
|
930
|
+
version "1.9.0"
|
931
|
+
resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-opt/-/wasm-opt-1.9.0.tgz#2211181e5b31326443cc8112eb9f0b9028721a61"
|
932
|
+
integrity sha512-Qkjgm6Anhm+OMbIL0iokO7meajkzQD71ioelnfPEj6r4eOFuqm4YC3VBPqXjFyyNwowzbMD+hizmprP/Fwkl2A==
|
933
|
+
dependencies:
|
934
|
+
"@webassemblyjs/ast" "1.9.0"
|
935
|
+
"@webassemblyjs/helper-buffer" "1.9.0"
|
936
|
+
"@webassemblyjs/wasm-gen" "1.9.0"
|
937
|
+
"@webassemblyjs/wasm-parser" "1.9.0"
|
938
|
+
|
939
|
+
"@webassemblyjs/wasm-parser@1.9.0":
|
940
|
+
version "1.9.0"
|
941
|
+
resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-parser/-/wasm-parser-1.9.0.tgz#9d48e44826df4a6598294aa6c87469d642fff65e"
|
942
|
+
integrity sha512-9+wkMowR2AmdSWQzsPEjFU7njh8HTO5MqO8vjwEHuM+AMHioNqSBONRdr0NQQ3dVQrzp0s8lTcYqzUdb7YgELA==
|
943
|
+
dependencies:
|
944
|
+
"@webassemblyjs/ast" "1.9.0"
|
945
|
+
"@webassemblyjs/helper-api-error" "1.9.0"
|
946
|
+
"@webassemblyjs/helper-wasm-bytecode" "1.9.0"
|
947
|
+
"@webassemblyjs/ieee754" "1.9.0"
|
948
|
+
"@webassemblyjs/leb128" "1.9.0"
|
949
|
+
"@webassemblyjs/utf8" "1.9.0"
|
950
|
+
|
951
|
+
"@webassemblyjs/wast-parser@1.9.0":
|
952
|
+
version "1.9.0"
|
953
|
+
resolved "https://registry.yarnpkg.com/@webassemblyjs/wast-parser/-/wast-parser-1.9.0.tgz#3031115d79ac5bd261556cecc3fa90a3ef451914"
|
954
|
+
integrity sha512-qsqSAP3QQ3LyZjNC/0jBJ/ToSxfYJ8kYyuiGvtn/8MK89VrNEfwj7BPQzJVHi0jGTRK2dGdJ5PRqhtjzoww+bw==
|
955
|
+
dependencies:
|
956
|
+
"@webassemblyjs/ast" "1.9.0"
|
957
|
+
"@webassemblyjs/floating-point-hex-parser" "1.9.0"
|
958
|
+
"@webassemblyjs/helper-api-error" "1.9.0"
|
959
|
+
"@webassemblyjs/helper-code-frame" "1.9.0"
|
960
|
+
"@webassemblyjs/helper-fsm" "1.9.0"
|
962
961
|
"@xtuc/long" "4.2.2"
|
963
962
|
|
964
|
-
"@webassemblyjs/wast-printer@1.
|
965
|
-
version "1.
|
966
|
-
resolved "https://registry.yarnpkg.com/@webassemblyjs/wast-printer/-/wast-printer-1.
|
967
|
-
integrity sha512-
|
963
|
+
"@webassemblyjs/wast-printer@1.9.0":
|
964
|
+
version "1.9.0"
|
965
|
+
resolved "https://registry.yarnpkg.com/@webassemblyjs/wast-printer/-/wast-printer-1.9.0.tgz#4935d54c85fef637b00ce9f52377451d00d47899"
|
966
|
+
integrity sha512-2J0nE95rHXHyQ24cWjMKJ1tqB/ds8z/cyeOZxJhcb+rW+SQASVjuznUSmdz5GpVJTzU8JkhYut0D3siFDD6wsA==
|
968
967
|
dependencies:
|
969
|
-
"@webassemblyjs/ast" "1.
|
970
|
-
"@webassemblyjs/wast-parser" "1.
|
968
|
+
"@webassemblyjs/ast" "1.9.0"
|
969
|
+
"@webassemblyjs/wast-parser" "1.9.0"
|
971
970
|
"@xtuc/long" "4.2.2"
|
972
971
|
|
973
972
|
"@xtuc/ieee754@^1.2.0":
|
@@ -993,7 +992,7 @@ accepts@~1.3.4:
|
|
993
992
|
mime-types "~2.1.24"
|
994
993
|
negotiator "0.6.2"
|
995
994
|
|
996
|
-
acorn@^6.
|
995
|
+
acorn@^6.4.1:
|
997
996
|
version "6.4.1"
|
998
997
|
resolved "https://registry.yarnpkg.com/acorn/-/acorn-6.4.1.tgz#531e58ba3f51b9dacb9a6646ca4debf5b14ca474"
|
999
998
|
integrity sha512-ZVA9k326Nwrj3Cj9jlh3wGFutC2ZornPNARZwsNYqQYgN0EsV2d53w5RN/co65Ohn4sUAUtb1rSUAOD6XN9idA==
|
@@ -1076,6 +1075,14 @@ anymatch@^3.1.0:
|
|
1076
1075
|
normalize-path "^3.0.0"
|
1077
1076
|
picomatch "^2.0.4"
|
1078
1077
|
|
1078
|
+
anymatch@~3.1.1:
|
1079
|
+
version "3.1.1"
|
1080
|
+
resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.1.tgz#c55ecf02185e2469259399310c173ce31233b142"
|
1081
|
+
integrity sha512-mM8522psRCqzV+6LhomX5wgp25YVibjh8Wj23I5RPkPppSVSjyKD2A2mBJmWGa+KN7f2D6LNh9jkBCeyLktzjg==
|
1082
|
+
dependencies:
|
1083
|
+
normalize-path "^3.0.0"
|
1084
|
+
picomatch "^2.0.4"
|
1085
|
+
|
1079
1086
|
aproba@^1.0.3, aproba@^1.1.1:
|
1080
1087
|
version "1.2.0"
|
1081
1088
|
resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a"
|
@@ -1293,9 +1300,9 @@ bluebird@^3.3.0, bluebird@^3.5.5:
|
|
1293
1300
|
integrity sha512-5am6HnnfN+urzt4yfg7IgTbotDjIT/u8AJpEt0sIU9FtXfVeezXAPKswrG+xKUCOYAINpSdgZVDU6QFh+cuH3w==
|
1294
1301
|
|
1295
1302
|
bn.js@^4.0.0, bn.js@^4.1.0, bn.js@^4.1.1, bn.js@^4.4.0:
|
1296
|
-
version "4.11.
|
1297
|
-
resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-4.11.
|
1298
|
-
integrity sha512-
|
1303
|
+
version "4.11.9"
|
1304
|
+
resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-4.11.9.tgz#26d556829458f9d1e81fc48952493d0ba3507828"
|
1305
|
+
integrity sha512-E6QoYqCKZfgatHTdHzs1RRKP7ip4vvm+EyRUeE2RF0NblwVvb0p6jSVeNTOFxPn26QXN2o6SMfNxKp6kU8zQaw==
|
1299
1306
|
|
1300
1307
|
body-parser@^1.16.1:
|
1301
1308
|
version "1.19.0"
|
@@ -1337,7 +1344,7 @@ braces@^2.3.1, braces@^2.3.2:
|
|
1337
1344
|
split-string "^3.0.2"
|
1338
1345
|
to-regex "^3.0.1"
|
1339
1346
|
|
1340
|
-
braces@^3.0.2:
|
1347
|
+
braces@^3.0.2, braces@~3.0.2:
|
1341
1348
|
version "3.0.2"
|
1342
1349
|
resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107"
|
1343
1350
|
integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==
|
@@ -1557,7 +1564,7 @@ check-error@^1.0.2:
|
|
1557
1564
|
resolved "https://registry.yarnpkg.com/check-error/-/check-error-1.0.2.tgz#574d312edd88bb5dd8912e9286dd6c0aed4aac82"
|
1558
1565
|
integrity sha1-V00xLt2Iu13YkS6Sht1sCu1KrII=
|
1559
1566
|
|
1560
|
-
chokidar@^2.0.
|
1567
|
+
chokidar@^2.0.3, chokidar@^2.1.8:
|
1561
1568
|
version "2.1.8"
|
1562
1569
|
resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-2.1.8.tgz#804b3a7b6a99358c3c5c61e71d8728f041cff917"
|
1563
1570
|
integrity sha512-ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg==
|
@@ -1591,6 +1598,21 @@ chokidar@^3.0.0:
|
|
1591
1598
|
optionalDependencies:
|
1592
1599
|
fsevents "^2.0.6"
|
1593
1600
|
|
1601
|
+
chokidar@^3.4.1:
|
1602
|
+
version "3.4.2"
|
1603
|
+
resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.4.2.tgz#38dc8e658dec3809741eb3ef7bb0a47fe424232d"
|
1604
|
+
integrity sha512-IZHaDeBeI+sZJRX7lGcXsdzgvZqKv6sECqsbErJA4mHWfpRrD8B97kSFN4cQz6nGBGiuFia1MKR4d6c1o8Cv7A==
|
1605
|
+
dependencies:
|
1606
|
+
anymatch "~3.1.1"
|
1607
|
+
braces "~3.0.2"
|
1608
|
+
glob-parent "~5.1.0"
|
1609
|
+
is-binary-path "~2.1.0"
|
1610
|
+
is-glob "~4.0.1"
|
1611
|
+
normalize-path "~3.0.0"
|
1612
|
+
readdirp "~3.4.0"
|
1613
|
+
optionalDependencies:
|
1614
|
+
fsevents "~2.1.2"
|
1615
|
+
|
1594
1616
|
chownr@^1.1.1:
|
1595
1617
|
version "1.1.2"
|
1596
1618
|
resolved "https://registry.yarnpkg.com/chownr/-/chownr-1.1.2.tgz#a18f1e0b269c8a6a5d3c86eb298beb14c3dd7bf6"
|
@@ -2039,9 +2061,9 @@ electron-to-chromium@^1.3.247:
|
|
2039
2061
|
integrity sha512-wGt+OivF1C1MPwaSv3LJ96ebNbLAWlx3HndivDDWqwIVSQxmhL17Y/YmwUdEMtS/bPyommELt47Dct0/VZNQBQ==
|
2040
2062
|
|
2041
2063
|
elliptic@^6.0.0:
|
2042
|
-
version "6.5.
|
2043
|
-
resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.5.
|
2044
|
-
integrity sha512-
|
2064
|
+
version "6.5.3"
|
2065
|
+
resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.5.3.tgz#cb59eb2efdaf73a0bd78ccd7015a62ad6e0f93d6"
|
2066
|
+
integrity sha512-IMqzv5wNQf+E6aHeIqATs0tOLeOTwj1QKbRcS3jBbYkl5oLAserA8yJTT7/VyHUYG91PRmPyeQDObKLPpeS4dw==
|
2045
2067
|
dependencies:
|
2046
2068
|
bn.js "^4.4.0"
|
2047
2069
|
brorand "^1.0.1"
|
@@ -2113,13 +2135,13 @@ engine.io@~3.2.0:
|
|
2113
2135
|
engine.io-parser "~2.1.0"
|
2114
2136
|
ws "~3.3.1"
|
2115
2137
|
|
2116
|
-
enhanced-resolve@^4.
|
2117
|
-
version "4.
|
2118
|
-
resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-4.
|
2119
|
-
integrity sha512-
|
2138
|
+
enhanced-resolve@^4.3.0:
|
2139
|
+
version "4.3.0"
|
2140
|
+
resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-4.3.0.tgz#3b806f3bfafc1ec7de69551ef93cca46c1704126"
|
2141
|
+
integrity sha512-3e87LvavsdxyoCfGusJnrZ5G8SLPOFeHSNpZI/ATL9a5leXo2k0w6MKnbqhdBad9qTobSfB20Ld7UmgoNbAZkQ==
|
2120
2142
|
dependencies:
|
2121
2143
|
graceful-fs "^4.1.2"
|
2122
|
-
memory-fs "^0.
|
2144
|
+
memory-fs "^0.5.0"
|
2123
2145
|
tapable "^1.0.0"
|
2124
2146
|
|
2125
2147
|
ent@~2.2.0:
|
@@ -2434,6 +2456,11 @@ fsevents@^2.0.6:
|
|
2434
2456
|
resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.0.7.tgz#382c9b443c6cbac4c57187cdda23aa3bf1ccfc2a"
|
2435
2457
|
integrity sha512-a7YT0SV3RB+DjYcppwVDLtn13UQnmg0SWZS7ezZD0UjnLwXmy8Zm21GMVGLaFGimIqcvyMQaOJBrop8MyOp1kQ==
|
2436
2458
|
|
2459
|
+
fsevents@~2.1.2:
|
2460
|
+
version "2.1.3"
|
2461
|
+
resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.1.3.tgz#fb738703ae8d2f9fe900c33836ddebee8b97f23e"
|
2462
|
+
integrity sha512-Auw9a4AxqWpa9GUfj370BMPzzyncfBABW8Mab7BGWBYDj4Isgq+cDKtx0i6u9jcX9pQDnswsaaOTgTmA5pEjuQ==
|
2463
|
+
|
2437
2464
|
function-bind@^1.1.1:
|
2438
2465
|
version "1.1.1"
|
2439
2466
|
resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d"
|
@@ -2495,6 +2522,13 @@ glob-parent@^5.0.0:
|
|
2495
2522
|
dependencies:
|
2496
2523
|
is-glob "^4.0.1"
|
2497
2524
|
|
2525
|
+
glob-parent@~5.1.0:
|
2526
|
+
version "5.1.1"
|
2527
|
+
resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.1.tgz#b6c1ef417c4e5663ea498f1c45afac6916bbc229"
|
2528
|
+
integrity sha512-FnI+VGOpnlGHWZxthPGR+QhR78fuiK0sNLkHQv+bL9fQi57lNNdquIbna/WrfROrolq8GK5Ek6BiMwqL/voRYQ==
|
2529
|
+
dependencies:
|
2530
|
+
is-glob "^4.0.1"
|
2531
|
+
|
2498
2532
|
glob@7.1.3:
|
2499
2533
|
version "7.1.3"
|
2500
2534
|
resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.3.tgz#3960832d3f1574108342dafd3a67b332c0969df1"
|
@@ -2776,7 +2810,7 @@ is-binary-path@^1.0.0:
|
|
2776
2810
|
dependencies:
|
2777
2811
|
binary-extensions "^1.0.0"
|
2778
2812
|
|
2779
|
-
is-binary-path@^2.1.0:
|
2813
|
+
is-binary-path@^2.1.0, is-binary-path@~2.1.0:
|
2780
2814
|
version "2.1.0"
|
2781
2815
|
resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-2.1.0.tgz#ea1f7f3b80f064236e83470f86c09c254fb45b09"
|
2782
2816
|
integrity sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==
|
@@ -2871,7 +2905,7 @@ is-glob@^3.1.0:
|
|
2871
2905
|
dependencies:
|
2872
2906
|
is-extglob "^2.1.0"
|
2873
2907
|
|
2874
|
-
is-glob@^4.0.0, is-glob@^4.0.1:
|
2908
|
+
is-glob@^4.0.0, is-glob@^4.0.1, is-glob@~4.0.1:
|
2875
2909
|
version "4.0.1"
|
2876
2910
|
resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.1.tgz#7567dbe9f2f5e2467bc77ab83c4a29482407a5dc"
|
2877
2911
|
integrity sha512-5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg==
|
@@ -3202,9 +3236,9 @@ locate-path@^3.0.0:
|
|
3202
3236
|
path-exists "^3.0.0"
|
3203
3237
|
|
3204
3238
|
lodash@^4.17.11, lodash@^4.17.13, lodash@^4.17.14, lodash@^4.17.15:
|
3205
|
-
version "4.17.
|
3206
|
-
resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.
|
3207
|
-
integrity sha512-
|
3239
|
+
version "4.17.19"
|
3240
|
+
resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.19.tgz#e48ddedbe30b3321783c5b4301fbd353bc1e4a4b"
|
3241
|
+
integrity sha512-JNvd8XER9GQX0v2qJgsaN/mzFCNA5BRe/j8JN9d+tWyGLSodKQHKFicdwNYzWwI3wjRnaKPsGj1XkBjx/F96DQ==
|
3208
3242
|
|
3209
3243
|
log-symbols@2.2.0:
|
3210
3244
|
version "2.2.0"
|
@@ -3266,11 +3300,6 @@ make-dir@^2.0.0:
|
|
3266
3300
|
pify "^4.0.1"
|
3267
3301
|
semver "^5.6.0"
|
3268
3302
|
|
3269
|
-
mamacro@^0.0.3:
|
3270
|
-
version "0.0.3"
|
3271
|
-
resolved "https://registry.yarnpkg.com/mamacro/-/mamacro-0.0.3.tgz#ad2c9576197c9f1abf308d0787865bd975a3f3e4"
|
3272
|
-
integrity sha512-qMEwh+UujcQ+kbz3T6V+wAmO2U8veoq2w+3wY8MquqwVA3jChfwY+Tk52GZKDfACEPjuZ7r2oJLejwpt8jtwTA==
|
3273
|
-
|
3274
3303
|
map-age-cleaner@^0.1.1:
|
3275
3304
|
version "0.1.3"
|
3276
3305
|
resolved "https://registry.yarnpkg.com/map-age-cleaner/-/map-age-cleaner-0.1.3.tgz#7d583a7306434c055fe474b0f45078e6e1b4b92a"
|
@@ -3313,7 +3342,7 @@ mem@^4.0.0:
|
|
3313
3342
|
mimic-fn "^2.0.0"
|
3314
3343
|
p-is-promise "^2.0.0"
|
3315
3344
|
|
3316
|
-
memory-fs@^0.4.
|
3345
|
+
memory-fs@^0.4.1:
|
3317
3346
|
version "0.4.1"
|
3318
3347
|
resolved "https://registry.yarnpkg.com/memory-fs/-/memory-fs-0.4.1.tgz#3a9a20b8462523e447cfbc7e8bb80ed667bfc552"
|
3319
3348
|
integrity sha1-OpoguEYlI+RHz7x+i7gO1me/xVI=
|
@@ -3321,6 +3350,14 @@ memory-fs@^0.4.0, memory-fs@^0.4.1:
|
|
3321
3350
|
errno "^0.1.3"
|
3322
3351
|
readable-stream "^2.0.1"
|
3323
3352
|
|
3353
|
+
memory-fs@^0.5.0:
|
3354
|
+
version "0.5.0"
|
3355
|
+
resolved "https://registry.yarnpkg.com/memory-fs/-/memory-fs-0.5.0.tgz#324c01288b88652966d161db77838720845a8e3c"
|
3356
|
+
integrity sha512-jA0rdU5KoQMC0e6ppoNRtpp6vjFq6+NY7r8hywnC7V+1Xj/MtHwGIbB1QaK/dunyjWteJzmkpd7ooeWg10T7GA==
|
3357
|
+
dependencies:
|
3358
|
+
errno "^0.1.3"
|
3359
|
+
readable-stream "^2.0.1"
|
3360
|
+
|
3324
3361
|
micromatch@^3.1.10, micromatch@^3.1.4:
|
3325
3362
|
version "3.1.10"
|
3326
3363
|
resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-3.1.10.tgz#70859bc95c9840952f359a068a3fc49f9ecfac23"
|
@@ -3404,6 +3441,11 @@ minimist@1.2.0, minimist@^1.2.0:
|
|
3404
3441
|
resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284"
|
3405
3442
|
integrity sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ=
|
3406
3443
|
|
3444
|
+
minimist@^1.2.5:
|
3445
|
+
version "1.2.5"
|
3446
|
+
resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.5.tgz#67d66014b66a6a8aaa0c083c5fd58df4e4e97602"
|
3447
|
+
integrity sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==
|
3448
|
+
|
3407
3449
|
minimist@~0.0.1:
|
3408
3450
|
version "0.0.10"
|
3409
3451
|
resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.10.tgz#de3f98543dbf96082be48ad1a0c7cda836301dcf"
|
@@ -3455,6 +3497,13 @@ mkdirp@0.5.1, mkdirp@^0.5.0, mkdirp@^0.5.1:
|
|
3455
3497
|
dependencies:
|
3456
3498
|
minimist "0.0.8"
|
3457
3499
|
|
3500
|
+
mkdirp@^0.5.3:
|
3501
|
+
version "0.5.5"
|
3502
|
+
resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.5.tgz#d91cefd62d1436ca0f41620e251288d420099def"
|
3503
|
+
integrity sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ==
|
3504
|
+
dependencies:
|
3505
|
+
minimist "^1.2.5"
|
3506
|
+
|
3458
3507
|
mocha-clean@^0.4.0:
|
3459
3508
|
version "0.4.0"
|
3460
3509
|
resolved "https://registry.yarnpkg.com/mocha-clean/-/mocha-clean-0.4.0.tgz#09b6985c321816140321e103e7dde4b48760921c"
|
@@ -3656,7 +3705,7 @@ normalize-path@^2.1.1:
|
|
3656
3705
|
dependencies:
|
3657
3706
|
remove-trailing-separator "^1.0.1"
|
3658
3707
|
|
3659
|
-
normalize-path@^3.0.0:
|
3708
|
+
normalize-path@^3.0.0, normalize-path@~3.0.0:
|
3660
3709
|
version "3.0.0"
|
3661
3710
|
resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65"
|
3662
3711
|
integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==
|
@@ -3953,6 +4002,11 @@ picomatch@^2.0.4:
|
|
3953
4002
|
resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.0.7.tgz#514169d8c7cd0bdbeecc8a2609e34a7163de69f6"
|
3954
4003
|
integrity sha512-oLHIdio3tZ0qH76NybpeneBhYVj0QFTfXEFTc/B3zKQspYfYYkWYgFsmzo+4kvId/bQRcNkVeguI3y+CD22BtA==
|
3955
4004
|
|
4005
|
+
picomatch@^2.2.1:
|
4006
|
+
version "2.2.2"
|
4007
|
+
resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.2.2.tgz#21f333e9b6b8eaff02468f5146ea406d345f4dad"
|
4008
|
+
integrity sha512-q0M/9eZHzmr0AulXyPwNfZjtwZ/RBZlbN3K3CErVrk50T2ASYI7Bye0EvekFY3IP1Nt2DHu0re+V2ZHIpMkuWg==
|
4009
|
+
|
3956
4010
|
pify@^4.0.1:
|
3957
4011
|
version "4.0.1"
|
3958
4012
|
resolved "https://registry.yarnpkg.com/pify/-/pify-4.0.1.tgz#4b2cd25c50d598735c50292224fd8c6df41e3231"
|
@@ -4174,6 +4228,13 @@ readdirp@^3.1.1:
|
|
4174
4228
|
dependencies:
|
4175
4229
|
picomatch "^2.0.4"
|
4176
4230
|
|
4231
|
+
readdirp@~3.4.0:
|
4232
|
+
version "3.4.0"
|
4233
|
+
resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-3.4.0.tgz#9fdccdf9e9155805449221ac645e8303ab5b9ada"
|
4234
|
+
integrity sha512-0xe001vZBnJEK+uKcj8qOhyAKPzIT+gStxWr3LCB0DwcXR5NZJ3IaC+yGnHCYzB/S7ov3m3EEbZI2zeNvX+hGQ==
|
4235
|
+
dependencies:
|
4236
|
+
picomatch "^2.2.1"
|
4237
|
+
|
4177
4238
|
regenerate-unicode-properties@^8.1.0:
|
4178
4239
|
version "8.1.0"
|
4179
4240
|
resolved "https://registry.yarnpkg.com/regenerate-unicode-properties/-/regenerate-unicode-properties-8.1.0.tgz#ef51e0f0ea4ad424b77bf7cb41f3e015c70a3f0e"
|
@@ -5047,14 +5108,23 @@ void-elements@^2.0.0:
|
|
5047
5108
|
resolved "https://registry.yarnpkg.com/void-elements/-/void-elements-2.0.1.tgz#c066afb582bb1cb4128d60ea92392e94d5e9dbec"
|
5048
5109
|
integrity sha1-wGavtYK7HLQSjWDqkjkulNXp2+w=
|
5049
5110
|
|
5050
|
-
watchpack@^
|
5051
|
-
version "
|
5052
|
-
resolved "https://registry.yarnpkg.com/watchpack/-/watchpack-
|
5053
|
-
integrity sha512-
|
5111
|
+
watchpack-chokidar2@^2.0.0:
|
5112
|
+
version "2.0.0"
|
5113
|
+
resolved "https://registry.yarnpkg.com/watchpack-chokidar2/-/watchpack-chokidar2-2.0.0.tgz#9948a1866cbbd6cb824dea13a7ed691f6c8ddff0"
|
5114
|
+
integrity sha512-9TyfOyN/zLUbA288wZ8IsMZ+6cbzvsNyEzSBp6e/zkifi6xxbl8SmQ/CxQq32k8NNqrdVEVUVSEf56L4rQ/ZxA==
|
5115
|
+
dependencies:
|
5116
|
+
chokidar "^2.1.8"
|
5117
|
+
|
5118
|
+
watchpack@^1.7.4:
|
5119
|
+
version "1.7.4"
|
5120
|
+
resolved "https://registry.yarnpkg.com/watchpack/-/watchpack-1.7.4.tgz#6e9da53b3c80bb2d6508188f5b200410866cd30b"
|
5121
|
+
integrity sha512-aWAgTW4MoSJzZPAicljkO1hsi1oKj/RRq/OJQh2PKI2UKL04c2Bs+MBOB+BBABHTXJpf9mCwHN7ANCvYsvY2sg==
|
5054
5122
|
dependencies:
|
5055
|
-
chokidar "^2.0.2"
|
5056
5123
|
graceful-fs "^4.1.2"
|
5057
5124
|
neo-async "^2.5.0"
|
5125
|
+
optionalDependencies:
|
5126
|
+
chokidar "^3.4.1"
|
5127
|
+
watchpack-chokidar2 "^2.0.0"
|
5058
5128
|
|
5059
5129
|
webpack-dev-middleware@^3.7.0:
|
5060
5130
|
version "3.7.1"
|
@@ -5083,33 +5153,33 @@ webpack-sources@^1.4.0, webpack-sources@^1.4.1:
|
|
5083
5153
|
source-list-map "^2.0.0"
|
5084
5154
|
source-map "~0.6.1"
|
5085
5155
|
|
5086
|
-
webpack@^4.
|
5087
|
-
version "4.
|
5088
|
-
resolved "https://registry.yarnpkg.com/webpack/-/webpack-4.
|
5089
|
-
integrity sha512-
|
5156
|
+
webpack@^4.44.1:
|
5157
|
+
version "4.44.1"
|
5158
|
+
resolved "https://registry.yarnpkg.com/webpack/-/webpack-4.44.1.tgz#17e69fff9f321b8f117d1fda714edfc0b939cc21"
|
5159
|
+
integrity sha512-4UOGAohv/VGUNQJstzEywwNxqX417FnjZgZJpJQegddzPmTvph37eBIRbRTfdySXzVtJXLJfbMN3mMYhM6GdmQ==
|
5090
5160
|
dependencies:
|
5091
|
-
"@webassemblyjs/ast" "1.
|
5092
|
-
"@webassemblyjs/helper-module-context" "1.
|
5093
|
-
"@webassemblyjs/wasm-edit" "1.
|
5094
|
-
"@webassemblyjs/wasm-parser" "1.
|
5095
|
-
acorn "^6.
|
5161
|
+
"@webassemblyjs/ast" "1.9.0"
|
5162
|
+
"@webassemblyjs/helper-module-context" "1.9.0"
|
5163
|
+
"@webassemblyjs/wasm-edit" "1.9.0"
|
5164
|
+
"@webassemblyjs/wasm-parser" "1.9.0"
|
5165
|
+
acorn "^6.4.1"
|
5096
5166
|
ajv "^6.10.2"
|
5097
5167
|
ajv-keywords "^3.4.1"
|
5098
5168
|
chrome-trace-event "^1.0.2"
|
5099
|
-
enhanced-resolve "^4.
|
5169
|
+
enhanced-resolve "^4.3.0"
|
5100
5170
|
eslint-scope "^4.0.3"
|
5101
5171
|
json-parse-better-errors "^1.0.2"
|
5102
5172
|
loader-runner "^2.4.0"
|
5103
5173
|
loader-utils "^1.2.3"
|
5104
5174
|
memory-fs "^0.4.1"
|
5105
5175
|
micromatch "^3.1.10"
|
5106
|
-
mkdirp "^0.5.
|
5176
|
+
mkdirp "^0.5.3"
|
5107
5177
|
neo-async "^2.6.1"
|
5108
5178
|
node-libs-browser "^2.2.1"
|
5109
5179
|
schema-utils "^1.0.0"
|
5110
5180
|
tapable "^1.1.3"
|
5111
5181
|
terser-webpack-plugin "^1.4.3"
|
5112
|
-
watchpack "^1.
|
5182
|
+
watchpack "^1.7.4"
|
5113
5183
|
webpack-sources "^1.4.1"
|
5114
5184
|
|
5115
5185
|
which-module@^2.0.0:
|