chore(deps): bump vitest to 4.1.10 and refresh lockfile - #4
Merged
Conversation
Dependabot cannot maintain bun.lock, so its npm PRs land package.json-only and fail CI on `bun install --frozen-lockfile`. Apply the update locally with a regenerated lockfile instead. TypeScript stays on 6.x: 7.0.2 breaks `tsup`'s .d.ts generation, whose bundled rollup-plugin-dts is built against the TS 5.7 compiler internals that the native TS 7 port removed. tsup 8.5.1 is already latest, so there is no version with TS 7 support to move to yet. 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.
Applies the pending dependency updates locally so the lockfile stays in sync.
Why not just merge the Dependabot PRs?
Dependabot cannot maintain
bun.lock. Its npm PRs changepackage.jsononly, so CI fails atbun install --frozen-lockfilebefore it ever reaches build/test — which is exactly why #2 is red. Applying the bump locally and regenerating the lockfile is the working path.TypeScript stays on 6.x (supersedes #2)
TypeScript 7.0.2 breaks the build.
tsup's.d.tsstep bundlesrollup-plugin-dtsbuilt against TypeScript 5.7 compiler internals, and the native TS 7 port removed them:Verified: build passes on 6.0.3, fails on 7.0.2.
tsc --noEmitand all 190 tests pass on TS 7 — it is only declaration bundling that breaks.tsup8.5.1 is already the latest release, so there is no upgrade to move to. Worth revisiting once tsup ships TS 7 support.Verification
bun run typecheck— passesbun run build— passes (ESM + CJS + .d.ts)bun run test— 190/190 passingbun install --frozen-lockfile— clean🤖 Generated with Claude Code