Skip to content

Commit

Permalink
Update manifests
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesmengo committed Nov 27, 2024
1 parent c6c1406 commit bad47dc
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion packages/cli/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2118,7 +2118,7 @@ FLAGS
--no-color Disable color output.
--password=<value> Password generated from the Theme Access app.
--path=<value> The path to your theme directory.
--strict Push theme files to the remote theme, but fail if there are theme check offenses.
--strict Require theme check to pass without errors before pushing. Warnings are allowed.
--verbose Increase the verbosity of the output.
DESCRIPTION
Expand Down
4 changes: 2 additions & 2 deletions packages/cli/oclif.manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -5793,8 +5793,8 @@
},
"strict": {
"allowNo": false,
"description": "Push theme files to the remote theme, but fail if there are theme check offenses.",
"env": "SHOPIFY_FLAG_STRICT",
"description": "Require theme check to pass without errors before pushing. Warnings are allowed.",
"env": "SHOPIFY_FLAG_STRICT_PUSH",
"name": "strict",
"type": "boolean"
},
Expand Down
4 changes: 2 additions & 2 deletions packages/theme/src/cli/commands/theme/push.ts
Original file line number Diff line number Diff line change
Expand Up @@ -98,8 +98,8 @@ export default class Push extends ThemeCommand {
env: 'SHOPIFY_FLAG_FORCE',
}),
strict: Flags.boolean({
description: 'Push theme files to the remote theme, but fail if there are theme check offenses.',
env: 'SHOPIFY_FLAG_STRICT',
description: 'Require theme check to pass without errors before pushing. Warnings are allowed.',
env: 'SHOPIFY_FLAG_STRICT_PUSH',
}),
}

Expand Down

0 comments on commit bad47dc

Please sign in to comment.