chore: centralize esbuild version with pnpm catalog#659
Open
Shinyaigeek wants to merge 1 commit into
Open
Conversation
esbuild was pinned independently in two internal packages (openui-cli at ^0.25.10, browser-bundle at ^0.25.12). Move it into the shared pnpm catalog at ^0.25.12 and reference it via catalog: so both packages stay aligned and bump in one place. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
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.
What
esbuildwas pinned independently in two internal packages, drifting between minor patch versions:packages/openui-cli—^0.25.10(dependencies)packages/browser-bundle—^0.25.12(devDependencies)This moves
esbuildinto the shared pnpmcatalog:at^0.25.12(the higher of the two, so neither package downgrades) and switches both packages to referencecatalog:.Why
Follows the same pattern as the recently centralized
@types/node(#653/#656) and the eslint/typescript tooling already in the catalog — one source of truth, bump in one place, no silent drift between packages.Notes
openui-clieffectively moves0.25.10 → 0.25.12, a patch within the same^0.25range — no behavior change.pnpm install --lockfile-only.🤖 Generated with Claude Code