chore(deps): hold TypeScript on 5.x, ignore 6.x line in Dependabot#57
Merged
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
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 a Dependabot
ignorerule holding TypeScript on the 5.x line and skipping the 6.x range.Why
TypeScript 6.0 is a transitional major (the release before the native TS 7 / Go port) and changed how ambient Node globals resolve — it broke
process,global,node:fs, etc. across our repos (TS2591/TS2304), failing CI on the auto-bump PRs. It's a dev-only dependency, so there's no runtime or security reason to chase it now.Notification on TS 7
We ignore only
versions: ["6.x"], not all majors — so when TypeScript 7 ships, Dependabot will open a normal PR for it automatically. We stay informed; we just stop the 6.x noise.When we do want TS 6 (or 7), we take it on deliberately as a tracked migration rather than via auto-merge.
🤖 Generated with Claude Code
Need help on this PR? Tag
/codesmithwith what you need. Autofix is disabled.