shopify_app 14.0.0 → 14.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +4 -0
- 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/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/Releasing.md +12 -12
- data/lib/shopify_app/version.rb +1 -1
- data/package.json +2 -2
- data/yarn.lock +239 -169
- metadata +3 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: db65febc756d6f85ea5ee8f2d109e5e8fa8087ed4b1eaa3df2e1d0abfa33e95c
|
4
|
+
data.tar.gz: 74c591a7dc4f9f6d0fc88f5be084decd7746a6052a72698e34938caeb8b4ef49
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 76e46bf49ceb4d417df9e414c2bb957bff0726f8a1e54bcb87df36a19ec1efe7b32c71dda81b8f1d0425acfccedd375149c5e975ac7f7281d3bb62136d578b49
|
7
|
+
data.tar.gz: e2459eb498a8b220d888fc1412231b2ce736cd779a4cfac6aa9fa1ce61cbe111a17d2a89427d6e0e38e67a9b3c201a5c0cfcba63c624dcdc27dbd5d8417dd47c
|
data/CHANGELOG.md
CHANGED
@@ -0,0 +1,18 @@
|
|
1
|
+
(function(window) {
|
2
|
+
function appBridgeRedirect(url) {
|
3
|
+
var AppBridge = window['app-bridge'];
|
4
|
+
var createApp = AppBridge.default;
|
5
|
+
var Redirect = AppBridge.actions.Redirect;
|
6
|
+
var app = createApp({
|
7
|
+
apiKey: window.apiKey,
|
8
|
+
shopOrigin: window.shopOrigin.replace(/^https:\/\//, ''),
|
9
|
+
});
|
10
|
+
|
11
|
+
var normalizedLink = document.createElement('a');
|
12
|
+
normalizedLink.href = url;
|
13
|
+
|
14
|
+
Redirect.create(app).dispatch(Redirect.Action.REMOTE, normalizedLink.href);
|
15
|
+
}
|
16
|
+
|
17
|
+
window.appBridgeRedirect = appBridgeRedirect;
|
18
|
+
})(window);
|
@@ -1,3 +1,5 @@
|
|
1
|
+
//= require ./app_bridge_redirect.js
|
2
|
+
|
1
3
|
(function() {
|
2
4
|
function redirect() {
|
3
5
|
var redirectTargetElement = document.getElementById("redirection-target");
|
@@ -12,15 +14,8 @@
|
|
12
14
|
// If the current window is the 'parent', change the URL by setting location.href
|
13
15
|
window.top.location.href = targetInfo.url;
|
14
16
|
} else {
|
15
|
-
// If the current window is the 'child', change the parent's URL with
|
16
|
-
|
17
|
-
normalizedLink.href = targetInfo.url;
|
18
|
-
|
19
|
-
data = JSON.stringify({
|
20
|
-
message: 'Shopify.API.remoteRedirect',
|
21
|
-
data: {location: normalizedLink.href}
|
22
|
-
});
|
23
|
-
window.parent.postMessage(data, targetInfo.myshopifyUrl);
|
17
|
+
// If the current window is the 'child', change the parent's URL with App Bridge Redirect
|
18
|
+
window.appBridgeRedirect(targetInfo.url);
|
24
19
|
}
|
25
20
|
}
|
26
21
|
|
@@ -1,3 +1,5 @@
|
|
1
|
+
//= require ./app_bridge_redirect.js
|
2
|
+
|
1
3
|
(function() {
|
2
4
|
var ACCESS_GRANTED_STATUS = 'storage_access_granted';
|
3
5
|
var ACCESS_DENIED_STATUS = 'storage_access_denied';
|
@@ -11,17 +13,7 @@
|
|
11
13
|
}
|
12
14
|
|
13
15
|
StorageAccessHelper.prototype.redirectToAppTLD = function(storageAccessStatus) {
|
14
|
-
|
15
|
-
|
16
|
-
normalizedLink.href = this.setNormalizedLink(storageAccessStatus);
|
17
|
-
|
18
|
-
data = JSON.stringify({
|
19
|
-
message: 'Shopify.API.remoteRedirect',
|
20
|
-
data: {
|
21
|
-
location: normalizedLink.href,
|
22
|
-
}
|
23
|
-
});
|
24
|
-
window.parent.postMessage(data, this.redirectData.myshopifyUrl);
|
16
|
+
window.appBridgeRedirect(this.setNormalizedLink(storageAccessStatus));
|
25
17
|
}
|
26
18
|
|
27
19
|
StorageAccessHelper.prototype.redirectToAppsIndex = function() {
|
@@ -5,6 +5,12 @@
|
|
5
5
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
6
6
|
<base target="_top">
|
7
7
|
<title>Redirecting…</title>
|
8
|
+
<script src="https://unpkg.com/@shopify/app-bridge@^1"></script>
|
9
|
+
<script>
|
10
|
+
window.apiKey = "<%= ShopifyApp.configuration.api_key %>";
|
11
|
+
window.shopOrigin = "https://<%= @shop %>";
|
12
|
+
window.returnTo = "<%= params[:return_to] %>"
|
13
|
+
</script>
|
8
14
|
<%= render 'shopify_app/partials/layout_styles' %>
|
9
15
|
<%= render 'shopify_app/partials/typography_styles' %>
|
10
16
|
<%= render 'shopify_app/partials/card_styles' %>
|
@@ -14,12 +20,6 @@
|
|
14
20
|
display: none;
|
15
21
|
}
|
16
22
|
</style>
|
17
|
-
<script>
|
18
|
-
window.apiKey = "<%= ShopifyApp.configuration.api_key %>";
|
19
|
-
window.shopOrigin = "https://<%= @shop %>";
|
20
|
-
window.returnTo = "<%= params[:return_to] %>"
|
21
|
-
</script>
|
22
|
-
|
23
23
|
<%= javascript_include_tag('shopify_app/enable_cookies', crossorigin: 'anonymous', integrity: true) %>
|
24
24
|
</head>
|
25
25
|
<body>
|
@@ -5,6 +5,11 @@
|
|
5
5
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
6
6
|
<base target="_top">
|
7
7
|
<title>Redirecting…</title>
|
8
|
+
<script src="https://unpkg.com/@shopify/app-bridge@^1"></script>
|
9
|
+
<script>
|
10
|
+
window.apiKey = "<%= ShopifyApp.configuration.api_key %>";
|
11
|
+
window.shopOrigin = "https://<%= current_shopify_domain %>";
|
12
|
+
</script>
|
8
13
|
<%= render 'shopify_app/partials/layout_styles' %>
|
9
14
|
<%= render 'shopify_app/partials/typography_styles' %>
|
10
15
|
<%= render 'shopify_app/partials/card_styles' %>
|
@@ -1,10 +1,15 @@
|
|
1
1
|
<!DOCTYPE html>
|
2
|
-
<html lang="
|
2
|
+
<html lang="<%= I18n.locale %>">
|
3
3
|
<head>
|
4
4
|
<meta charset="utf-8" />
|
5
5
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
6
6
|
<base target="_top">
|
7
7
|
<title>Redirecting…</title>
|
8
|
+
<script src="https://unpkg.com/@shopify/app-bridge@^1"></script>
|
9
|
+
<script>
|
10
|
+
window.apiKey = "<%= ShopifyApp.configuration.api_key %>";
|
11
|
+
window.shopOrigin = "https://<%= current_shopify_domain %>";
|
12
|
+
</script>
|
8
13
|
<%= javascript_include_tag('shopify_app/redirect', crossorigin: 'anonymous', integrity: true) %>
|
9
14
|
</head>
|
10
15
|
<body>
|
data/docs/Releasing.md
CHANGED
@@ -1,18 +1,18 @@
|
|
1
1
|
Releasing ShopifyApp
|
2
2
|
|
3
3
|
1. Check the Semantic Versioning page for info on how to version the new release: http://semver.org
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
4
|
+
1. Create a pull request with the following changes:
|
5
|
+
- Update the version of ShopifyApp in lib/shopify_app/version.rb
|
6
|
+
- Update the version of shopify_app in package.json
|
7
|
+
- Add a CHANGELOG entry for the new release with the date
|
8
|
+
- Change the title of the PR to something like: "Packaging for release X.Y.Z"
|
9
|
+
1. Merge your pull request
|
10
|
+
1. Checkout and pull from master so you have the latest version of the shopify_app
|
11
|
+
1. Tag the HEAD with the version
|
12
|
+
```bash
|
13
|
+
$ git tag -f vX.Y.Z && git push --tags --force
|
14
|
+
```
|
15
|
+
1. Use Shipit to build and push the gem
|
16
16
|
|
17
17
|
If you see an error like 'You need to create the vX.Y.X tag first', clear GIT
|
18
18
|
cache in Shipit settings
|
data/lib/shopify_app/version.rb
CHANGED
data/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "shopify_app",
|
3
|
-
"version": "14.
|
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/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"
|
@@ -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"
|
@@ -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==
|
@@ -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:
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: shopify_app
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 14.
|
4
|
+
version: 14.1.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Shopify
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-08-
|
11
|
+
date: 2020-08-17 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: browser_sniffer
|
@@ -258,6 +258,7 @@ files:
|
|
258
258
|
- Rakefile
|
259
259
|
- SECURITY.md
|
260
260
|
- app/assets/images/storage_access.svg
|
261
|
+
- app/assets/javascripts/shopify_app/app_bridge_redirect.js
|
261
262
|
- app/assets/javascripts/shopify_app/enable_cookies.js
|
262
263
|
- app/assets/javascripts/shopify_app/itp_helper.js
|
263
264
|
- app/assets/javascripts/shopify_app/partition_cookies.js
|