fix(langgraph-chat): align @types/node with the shared catalog#656
Merged
Conversation
#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.
ritvik-thesys
approved these changes
Jun 15, 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.
Problem
pnpm install --frozen-lockfilecurrently fails on every PR with:#653 centralized
@types/nodethrough the pnpm catalog (^22.15.32) and migrated every workspace project to"@types/node": "catalog:"— butexamples/langgraph-chat(merged around the same time via #644) was left on"^20". The lockfile regenerated by #653 dropped the@types/node@20.xpackage entry, leaving this example's20.19.35reference dangling.Fix
examples/langgraph-chatto"@types/node": "catalog:", matching the other 12 examples@types/node@22.19.19Verified locally:
pnpm install --frozen-lockfilenow exits 0.close #657