LTRAC-467: chore(create-catalyst) - Deprecate the integration command#3055
Merged
jorgemoya merged 1 commit intoJun 22, 2026
Conversation
🦋 Changeset detectedLatest commit: 0ce2f4d The changes in this PR will be included in the next version bump. This PR includes changesets to release 1 package
Not sure what this means? Click here to learn what changesets are. Click here if you're a maintainer who wants to add another changeset to this PR |
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
Contributor
Bundle Size ReportComparing against baseline from No bundle size changes detected. |
Contributor
Author
|
Testing: |
jorgemoya
force-pushed
the
jorgemoya/ltrac-467-deprecate-create-catalyst-integration-command
branch
from
June 18, 2026 15:25
c1be226 to
a2d23f1
Compare
Print a deprecation warning when `create-catalyst integration` is invoked, and
hide it from `--help` (registered with { hidden: true }). The command builds
integration patches by diffing git tags, which won't work once Catalyst projects
ship as tarballs (no git history); it will be replaced by `catalyst upgrade`.
Still functional for now — full removal is a future major.
Refs LTRAC-467
Co-Authored-By: Claude <noreply@anthropic.com>
jorgemoya
force-pushed
the
jorgemoya/ltrac-467-deprecate-create-catalyst-integration-command
branch
from
June 18, 2026 15:27
a2d23f1 to
0ce2f4d
Compare
Contributor
Unlighthouse Performance Comparison — VercelComparing PR preview deployment Unlighthouse scores vs production Unlighthouse scores. Summary ScoreAggregate score across all categories as reported by Unlighthouse.
Category Scores
Core Web Vitals
|
chanceaclark
approved these changes
Jun 18, 2026
jorgemoya
deleted the
jorgemoya/ltrac-467-deprecate-create-catalyst-integration-command
branch
June 22, 2026 14:41
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.
Linear: LTRAC-467
What/Why?
Deprecates
create-catalyst integrationahead of its eventual removal. The command builds integration patches by diffing git tags (@bigcommerce/catalyst-core@*), which relies on the merchant's project having full git history. Once projects are distributed as tarballs instead of git clones (LTRAC-409), that history won't exist and the command can't work. Thecatalyst upgradecommand will subsume the use case (integrations publish tags; merchants target them withcatalyst upgrade).This ships the deprecation warning first on the stable (
canary) line so we can cut a CLI release that warns users before the command is removed.commands/integration.ts— prints a yellow deprecation warning when invoked (still runs for now), pointing at the futurecatalyst upgrade.index.ts— registers the command with{ hidden: true }so it no longer appears in--help(verified:--helpnow lists onlycreate/init/telemetry).minor).Testing
pnpm build,pnpm typecheck,pnpm lint, andpnpm test(8 tests) all pass inpackages/create-catalyst. Verified against the builtdist:--helphidesintegration, and invoking it prints the warning.Migration
None for end users — the command still works, just warns and is hidden. Docs referencing
create-catalyst integrationshould note the deprecation (follow-up).Note
Full removal of the command is handled separately as part of the create-catalyst →
catalystconsolidation (LTRAC-910, on thealphaline, which reduces create-catalyst to a thincatalyst createwrapper). This PR is the canary-line deprecation stopgap.