diff --git a/packages/cli/README.md b/packages/cli/README.md index 874e37e922..951d675a5b 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 19fdcacd19..5e20ce93b7 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": {