From 2241a178b114cf24c96bd7c4ecd66fe8826b0b3e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc-Andr=C3=A9=20Cournoyer?= Date: Wed, 8 Jan 2025 11:02:30 -0500 Subject: [PATCH] Refresh OCLIF manifest --- packages/cli/README.md | 16 +++++++++------- packages/cli/oclif.manifest.json | 22 +++++++++++++++++++--- 2 files changed, 28 insertions(+), 10 deletions(-) diff --git a/packages/cli/README.md b/packages/cli/README.md index 874e37e922b..951d675a5b0 100644 --- a/packages/cli/README.md +++ b/packages/cli/README.md @@ -2095,13 +2095,15 @@ USAGE $ shopify theme profile --url /products/classic-leather-jacket FLAGS - -j, --json Return profiling data as JSON. - -s, --store= Store URL. It can be the store prefix (example) or the full myshopify.com URL - (example.myshopify.com, https://example.myshopify.com). - -u, --url= (required) URL to the theme page to profile. - --no-color Disable color output. - --password= Password generated from the Theme Access app. - --verbose Increase the verbosity of the output. + -j, --json Return profiling data as JSON. + -s, --store= Store URL. It can be the store prefix (example) or the full myshopify.com URL + (example.myshopify.com, https://example.myshopify.com). + -t, --theme= Theme ID or name of the remote theme. + --no-color Disable color output. + --password= Password generated from the Theme Access app. + --store-password= The password for storefronts with password protection. + --url= [default: /] The url to be used as context + --verbose Increase the verbosity of the output. DESCRIPTION Profile the Liquid rendering of a theme page. diff --git a/packages/cli/oclif.manifest.json b/packages/cli/oclif.manifest.json index 19fdcacd19f..5e20ce93b78 100644 --- a/packages/cli/oclif.manifest.json +++ b/packages/cli/oclif.manifest.json @@ -5868,14 +5868,30 @@ "name": "store", "type": "option" }, + "store-password": { + "description": "The password for storefronts with password protection.", + "env": "SHOPIFY_FLAG_STORE_PASSWORD", + "hasDynamicHelp": false, + "multiple": false, + "name": "store-password", + "type": "option" + }, + "theme": { + "char": "t", + "description": "Theme ID or name of the remote theme.", + "env": "SHOPIFY_FLAG_THEME_ID", + "hasDynamicHelp": false, + "multiple": false, + "name": "theme", + "type": "option" + }, "url": { - "char": "u", - "description": "URL to the theme page to profile.", + "default": "/", + "description": "The url to be used as context", "env": "SHOPIFY_FLAG_URL", "hasDynamicHelp": false, "multiple": false, "name": "url", - "required": true, "type": "option" }, "verbose": {