From 97943ffa56f61998e91e0b723f24ba9ae239711a Mon Sep 17 00:00:00 2001 From: Donald Merand Date: Tue, 25 Aug 2026 09:55:57 -0400 Subject: [PATCH] Fix development store command help text Assisted-By: devx/ba772edb-2fc5-4841-ac28-2c5ffa652e3e --- .changeset/quiet-dev-store-help.md | 5 +++++ packages/cli/oclif.manifest.json | 4 ++-- packages/store/src/cli/commands/store/create/dev.ts | 2 +- 3 files changed, 8 insertions(+), 3 deletions(-) create mode 100644 .changeset/quiet-dev-store-help.md diff --git a/.changeset/quiet-dev-store-help.md b/.changeset/quiet-dev-store-help.md new file mode 100644 index 00000000000..9ab32e6f243 --- /dev/null +++ b/.changeset/quiet-dev-store-help.md @@ -0,0 +1,5 @@ +--- +'@shopify/store': patch +--- + +Correct development store command help text. diff --git a/packages/cli/oclif.manifest.json b/packages/cli/oclif.manifest.json index 7078a731040..fa36d024fb8 100644 --- a/packages/cli/oclif.manifest.json +++ b/packages/cli/oclif.manifest.json @@ -6697,8 +6697,8 @@ "args": { }, "customPluginName": "@shopify/store", - "description": "Creates a new app development store in your organization.", - "descriptionWithMarkdown": "Creates a new app development store in your organization.", + "description": "Creates a new development store in your organization.", + "descriptionWithMarkdown": "Creates a new development store in your organization.", "enableJsonFlag": false, "flags": { "country": { diff --git a/packages/store/src/cli/commands/store/create/dev.ts b/packages/store/src/cli/commands/store/create/dev.ts index 37a01570c9a..2ca985ef88b 100644 --- a/packages/store/src/cli/commands/store/create/dev.ts +++ b/packages/store/src/cli/commands/store/create/dev.ts @@ -14,7 +14,7 @@ export default class StoreCreateDev extends Command { static summary = 'Create a new development store.' - static descriptionWithMarkdown = 'Creates a new app development store in your organization.' + static descriptionWithMarkdown = 'Creates a new development store in your organization.' static description = this.descriptionWithoutMarkdown()