Skip to content

Commit

Permalink
Refresh OCLIF manifest
Browse files Browse the repository at this point in the history
  • Loading branch information
macournoyer committed Jan 8, 2025
1 parent a49cf3e commit 2241a17
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 10 deletions.
16 changes: 9 additions & 7 deletions packages/cli/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2095,13 +2095,15 @@ USAGE
$ shopify theme profile --url /products/classic-leather-jacket
FLAGS
-j, --json Return profiling data as JSON.
-s, --store=<value> Store URL. It can be the store prefix (example) or the full myshopify.com URL
(example.myshopify.com, https://example.myshopify.com).
-u, --url=<value> (required) URL to the theme page to profile.
--no-color Disable color output.
--password=<value> Password generated from the Theme Access app.
--verbose Increase the verbosity of the output.
-j, --json Return profiling data as JSON.
-s, --store=<value> Store URL. It can be the store prefix (example) or the full myshopify.com URL
(example.myshopify.com, https://example.myshopify.com).
-t, --theme=<value> Theme ID or name of the remote theme.
--no-color Disable color output.
--password=<value> Password generated from the Theme Access app.
--store-password=<value> The password for storefronts with password protection.
--url=<value> [default: /] The url to be used as context
--verbose Increase the verbosity of the output.
DESCRIPTION
Profile the Liquid rendering of a theme page.
Expand Down
22 changes: 19 additions & 3 deletions packages/cli/oclif.manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -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": {
Expand Down

0 comments on commit 2241a17

Please sign in to comment.