shopify-cli 2.2.0 → 2.2.1
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/CHANGELOG.md +5 -0
- data/Gemfile.lock +1 -1
- data/lib/project_types/extension/commands/push.rb +0 -1
- data/lib/project_types/extension/features/argo.rb +1 -11
- data/lib/project_types/extension/models/specification_handlers/checkout_post_purchase.rb +10 -0
- data/lib/shopify-cli/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c0c4574b0b307dbe68a4cfe4d47e76a4825dbc2bb208b2fd891e0192e3158690
|
|
4
|
+
data.tar.gz: c365c04166d24b723c4b5d8e0612e722fec4e765f2efcc4a638d534ab60a645c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: baecd34e68711439ab4986652a21d00dc7c8443ef92497cf516e535cb91b979280293a3d86936a5b4260984739b28adab3ece18fdedfa35087d8ed1ee7411f2c
|
|
7
|
+
data.tar.gz: c55111c54115aeb15b5c9cd29e48c1b42c2dbe89a79a509e74c3f2fdea0830ad693e9983ca00ad40468ed9c132c7202e0ca01681dc94866f191773c982811f14
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
Unreleased
|
|
2
2
|
------
|
|
3
3
|
|
|
4
|
+
Version 2.2.1
|
|
5
|
+
------
|
|
6
|
+
|
|
7
|
+
* [1432](https://github.com/Shopify/shopify-cli/pull/1432) New method for determining renderer package name
|
|
8
|
+
|
|
4
9
|
Version 2.2.0
|
|
5
10
|
------
|
|
6
11
|
* [#1424](https://github.com/Shopify/shopify-cli/pull/1424/): Add `--resourceUrl` flag to extension serve command
|
data/Gemfile.lock
CHANGED
|
@@ -11,7 +11,6 @@ module Extension
|
|
|
11
11
|
def call(args, name)
|
|
12
12
|
Command::Register.new(@ctx).call(args, name) unless project.registered?
|
|
13
13
|
Command::Build.new(@ctx).call(args, name) unless specification_handler.specification.options[:skip_build]
|
|
14
|
-
|
|
15
14
|
CLI::UI::Frame.open(@ctx.message("push.frame_title")) do
|
|
16
15
|
updated_draft_version = update_draft
|
|
17
16
|
show_message(updated_draft_version)
|
|
@@ -19,16 +19,6 @@ module Extension
|
|
|
19
19
|
YARN_RUN_SCRIPT_NAME = %w(build).freeze
|
|
20
20
|
private_constant :YARN_INSTALL_COMMAND, :YARN_INSTALL_PARAMETERS, :YARN_RUN_COMMAND, :YARN_RUN_SCRIPT_NAME
|
|
21
21
|
|
|
22
|
-
UI_EXTENSIONS_CHECKOUT = "@shopify/checkout-ui-extensions"
|
|
23
|
-
UI_EXTENSIONS_ADMIN = "@shopify/admin-ui-extensions"
|
|
24
|
-
UI_EXTENSIONS_POST_PURCHASE = "@shopify/post-purchase-ui-extensions"
|
|
25
|
-
|
|
26
|
-
PACKAGE_NAMES = [
|
|
27
|
-
UI_EXTENSIONS_CHECKOUT,
|
|
28
|
-
UI_EXTENSIONS_ADMIN,
|
|
29
|
-
UI_EXTENSIONS_POST_PURCHASE,
|
|
30
|
-
].freeze
|
|
31
|
-
|
|
32
22
|
def create(directory_name, identifier, context)
|
|
33
23
|
Features::ArgoSetup.new(git_template: git_template).call(directory_name, identifier, context)
|
|
34
24
|
end
|
|
@@ -54,7 +44,7 @@ module Extension
|
|
|
54
44
|
def renderer_package(context)
|
|
55
45
|
js_system = ShopifyCli::JsSystem.new(ctx: context)
|
|
56
46
|
Tasks::FindNpmPackages
|
|
57
|
-
.exactly_one_of(
|
|
47
|
+
.exactly_one_of(renderer_package_name, js_system: js_system)
|
|
58
48
|
.unwrap { |err| raise err }
|
|
59
49
|
rescue Extension::PackageResolutionFailed
|
|
60
50
|
context.abort(
|
|
@@ -6,6 +6,7 @@ module Extension
|
|
|
6
6
|
module SpecificationHandlers
|
|
7
7
|
class CheckoutPostPurchase < Default
|
|
8
8
|
PERMITTED_CONFIG_KEYS = [:metafields]
|
|
9
|
+
RENDERER_PACKAGE_NAME = "@shopify/post-purchase-ui-extensions"
|
|
9
10
|
|
|
10
11
|
def config(context)
|
|
11
12
|
{
|
|
@@ -13,6 +14,15 @@ module Extension
|
|
|
13
14
|
**argo.config(context),
|
|
14
15
|
}
|
|
15
16
|
end
|
|
17
|
+
|
|
18
|
+
protected
|
|
19
|
+
|
|
20
|
+
def argo
|
|
21
|
+
Features::Argo.new(
|
|
22
|
+
git_template: specification.features.argo.git_template,
|
|
23
|
+
renderer_package_name: RENDERER_PACKAGE_NAME
|
|
24
|
+
)
|
|
25
|
+
end
|
|
16
26
|
end
|
|
17
27
|
end
|
|
18
28
|
end
|
data/lib/shopify-cli/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: shopify-cli
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.2.
|
|
4
|
+
version: 2.2.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Shopify
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2021-08-
|
|
11
|
+
date: 2021-08-09 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|