chore(deps): combined catalog bump — typescript 6, biome, changesets, tsdown#20
Merged
Conversation
Combined update superseding Dependabot PRs #15, #17, #18, #19, which all modify pnpm-lock.yaml and conflict with each other on shared cross-version references (e.g. tsdown@x(typescript@y)). Catalog bumps (pnpm-workspace.yaml): - typescript ^5.8.0 -> ^6.0.3 (was #15) - @biomejs/biome ^2.5.0 -> ^2.5.4 (was #19) - @changesets/cli ^2.29.0 -> ^2.31.1 (was #18) - tsdown ^0.22.7 -> ^0.22.12 (was #17) TypeScript 6.0 promotes the `baseUrl` deprecation (TS5101) to a hard error, breaking `tsc --noEmit`. Drop `baseUrl` from tsconfig.json and make the `paths` targets relative (`./...`); path mappings resolve against the tsconfig directory when baseUrl is unset, so module resolution is unchanged. Verified locally against TS 6.0.3: typecheck, lint, schema, build, and tests all pass. Co-Authored-By: Claude Opus 4.8 <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.
Combined dependency update that supersedes the individual Dependabot PRs #15, #17, #18, #19. Those four all edit
pnpm-lock.yamland conflict with one another on shared cross-version references (e.g.tsdown@x(typescript@y)), so they can't be merged sequentially without repeated rebasing. This bundles them into one lockfile regeneration.(#16 —
actions/setup-node6→7 — was independent and already merged directly.)Catalog bumps (
pnpm-workspace.yaml)Required config fix for TypeScript 6.0
TS 6.0 promotes the
baseUrldeprecation (TS5101) to a hard error, which broketsc --noEmit:Fix: drop
baseUrlfromtsconfig.jsonand make thepathstargets relative (./…). WhenbaseUrlis unset, path mappings resolve against the tsconfig directory — so module resolution is unchanged and this is also forward-compatible with TS 7.Verification (local, against the resolved versions: TS 6.0.3, biome 2.5.5, tsdown 0.22.14)
pnpm typecheck✅pnpm lint✅pnpm run schema:validate✅pnpm run build✅pnpm test✅ (core / classify / sanitize / policy / report)Closes #15
Closes #17
Closes #18
Closes #19