Unhide store create dev and store delete - #8456
Conversation
1617f83 to
f2791ef
Compare
|
Warning This pull request is not mergeable via GitHub because a downstack PR is open. Once all requirements are satisfied, merge this PR as a stack on Graphite.
This stack of pull requests is managed by Graphite. Learn more about stacking. |
f2791ef to
da341e1
Compare
|
/snapit |
|
🫰✨ Thanks @amcaplan! Your snapshot has been published to npm. Test the snapshot by installing your package globally: pnpm i -g --@shopify:registry=https://registry.npmjs.org @shopify/cli@0.0.0-snapshot-20260902173719Caution After installing, validate the version by running |
da341e1 to
fb2b64b
Compare
Removes `static hidden = true` from both commands ahead of their public release, and regenerates every artifact that describes the CLI's public command surface: the oclif manifest, the CLI README, the `shopify commands --tree` snapshot, and the shopify.dev reference docs. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com> Assisted-By: devx/13746eb2-e5e2-4de0-b1fd-476a489da9c3
fb2b64b to
ff99e53
Compare
|
/snapit |
|
🫰✨ Thanks @amcaplan! Your snapshot has been published to npm. Test the snapshot by installing your package globally: pnpm i -g --@shopify:registry=https://registry.npmjs.org @shopify/cli@0.0.0-snapshot-20260903110839Caution After installing, validate the version by running |

WHY are these changes introduced?
These two commands are soon ready to be public, this PR is ready for that event!
WHAT is this pull request doing?
Unhides the following
shopify storecommands:shopify store create devshopify store deleteTo accomplish this:
static hidden = truefrom both commands.packages/cli/oclif.manifest.json(pnpm refresh-manifests)packages/cli/README.md(pnpm refresh-readme)packages/e2e/data/snapshots/commands.txt(pnpm test:regenerate-snapshots)docs-shopify.dev/generated/generated_docs_data_v2.json(pnpm build-dev-docs)@shopify/cli+@shopify/store, minor).No behavior changes to either command — only visibility.
Learning for the future: generator ordering
shopify commands --treeresolves command visibility from the oclif manifest,not from compiled source. So after removing
hiddenand runningpnpm build,bin/check-commands-snapshot.jsstill passes against the stale manifest — andregenerating the snapshot at that point commits one CI will reject. The working
order is:
How to test your changes?
Checklist
patchfor bug fixes ·minorfor new features ·majorfor breaking changes) and added a changeset withpnpm changeset add🤖 Generated with Claude Code