chore: centralize @types/node version with pnpm catalog#653
Merged
ankit-thesys merged 1 commit intoJun 15, 2026
Merged
Conversation
Add @types/node to the pnpm catalog and reference it via the `catalog:` protocol across all packages. Previously versions diverged between ^20, ^22, ^22.12.0, ^22.15.32 and ^25.2.3; unify on ^22.15.32 (Node 22 LTS, already used by the core react-ui / openui-cli packages). Follows the same pattern as the react/eslint/typescript catalog work. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
ankit-thesys
approved these changes
Jun 15, 2026
ankit-thesys
left a comment
Contributor
There was a problem hiding this comment.
Looks good to me.
Thank you for your contribution.
4 tasks
This was referenced Jun 15, 2026
vishxrad
added a commit
that referenced
this pull request
Jun 15, 2026
#653 centralized @types/node via the pnpm catalog and migrated every workspace project, but examples/langgraph-chat (merged around the same time in #644) was left on "^20". The regenerated lockfile dropped the @types/node@20.x package entry, leaving a dangling 20.19.35 reference for this example that breaks `pnpm install --frozen-lockfile` on every PR. Switch the example to "@types/node": "catalog:" like the other 12 examples and regenerate the lockfile so it resolves to the catalog's 22.19.19.
2 tasks
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
Adds
@types/nodeto the pnpm catalog and references it via thecatalog:protocol across all packages.Why
@types/nodeversions had drifted across the workspace:^20^22^22.12.0^22.15.32^25.2.3Unified on
^22.15.32(Node 22 LTS, already used by the corereact-ui/openui-clipackages).docsmoves from^25down to the LTS line.This follows the same pattern as the already-merged react (#624), eslint (#634) and typescript (#645) catalog work.
Notes
package.jsonfiles updated to"@types/node": "catalog:".22.19.19.🤖 Generated with Claude Code