Remove deprecated shopify app scaffold extension command#7525
Open
alfonso-noriega wants to merge 1 commit into05-remove-app-generate-schema-commandfrom
Open
Remove deprecated shopify app scaffold extension command#7525alfonso-noriega wants to merge 1 commit into05-remove-app-generate-schema-commandfrom
shopify app scaffold extension command#7525alfonso-noriega wants to merge 1 commit into05-remove-app-generate-schema-commandfrom
Conversation
This was referenced May 11, 2026
Contributor
Author
|
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. |
4 tasks
The `shopify app scaffold extension` command was a hidden alias for `shopify app generate extension`, deprecated long ago. The file was already unregistered from the CLI command map (`pnpm shopify app:scaffold:extension` returns 'command not found'), so this change just deletes the orphaned source.
da300cd to
f23fe6c
Compare
559c629 to
ec867ef
Compare
Contributor
|
| Changeset | Package |
|---|---|
remove-app-deploy-force-flag.md |
'@shopify/app': major |
remove-app-generate-extension-type-flag.md |
'@shopify/app': major |
remove-app-generate-schema-command.md |
'@shopify/app': major |
remove-app-release-force-flag.md |
'@shopify/app': major |
remove-app-scaffold-extension-command.md |
'@shopify/app': major |
remove-webhook-trigger-shared-secret-flag.md |
'@shopify/app': major |
thin-webs-notice.md |
'@shopify/plugin-did-you-mean': major |
thin-webs-notice.md |
'@shopify/plugin-cloudflare': major |
thin-webs-notice.md |
'@shopify/create-app': major |
thin-webs-notice.md |
'@shopify/cli-kit': major |
thin-webs-notice.md |
'@shopify/store': major |
thin-webs-notice.md |
'@shopify/theme': major |
thin-webs-notice.md |
'@shopify/app': major |
thin-webs-notice.md |
'@shopify/cli': major |
thin-webs-notice.md |
'@shopify/e2e': major |
4 tasks
isaacroldan
approved these changes
May 11, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.

WHY are these changes introduced?
The
shopify app scaffold extensioncommand was a hidden alias forshopify app generate extensiondeprecated long ago (it printed a "scaffold has been deprecated in favor of generate" warning when used). The command file was already unregistered from the CLI command map (pnpm shopify app:scaffold:extensionreturnsCommand not found), but the source file was left on disk as orphaned code. This PR removes the orphan.Part of the deprecated-flag-removal stack: #7524 ← this PR → #7526.
WHAT is this pull request doing?
packages/app/src/cli/commands/app/scaffold/extension.ts(theAppScaffoldExtensionclass).packages/app/src/cli/commands/app/scaffold/directory is also removed.packages/app/src/cli/index.tsorpackages/cli/oclif.manifest.json.analyticsNameOverride()returning'app scaffold extension'inpackages/app/src/cli/commands/app/generate/extension.tsis intentionally left in place to avoid breaking historical analytics dashboards.How to test your changes?
pnpm shopify app:scaffold:extension --helpand confirm theCommand not founderror (same as before this change).pnpm shopify app generate extension --helpand confirm the supported command still works.packages/app/src/cli/commands/app/scaffold/directory left in the repo.Checklist
patchfor bug fixes ·minorfor new features ·majorfor breaking changes) and added a changeset withpnpm changeset add