build: update dependencies to latest (root + examples) - #85
Merged
Conversation
Bumps eslint, vitest, tsdown, pg, prettier, zod, @swc/core, acorn, typescript-eslint, @types/* etc. to latest. Two deps deliberately held: - typescript stays 6.x: typescript-eslint (latest 8.64) peer-requires typescript <6.1, so the linter can't move to TS7 yet. Typechecking is already on TS7 via @typescript/native-preview (tsgo), which coexists as a separate package precisely for this reason. - @typescript/native-preview pinned exactly (was a caret on a daily -dev prerelease, which npm resolves UP across 7.0.0-dev.* — a drift footgun). Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
There was a problem hiding this comment.
Pull request overview
Updates root and example workspace dependencies/lockfiles to newer versions, with an explicit pin for @typescript/native-preview to avoid prerelease drift while keeping typescript on 6.x due to typescript-eslint peer constraints.
Changes:
- Bump core dev tooling deps (eslint/typescript-eslint, vitest, tsdown, prettier, zod, swc, acorn) and
pgto newer releases in the root workspace. - Regenerate
package-lock.json(and example lockfiles) to reflect updated transitive dependency graphs. - Update example packages to the corresponding newer
pg/vitestversions.
Reviewed changes
Copilot reviewed 3 out of 6 changed files in this pull request and generated 1 comment.
Show a summary per file
| File | Description |
|---|---|
| package.json | Updates root scripts/dependency versions and pins @typescript/native-preview. |
| package-lock.json | Refreshes resolved versions/metadata for updated dependencies (including new engine constraints). |
| examples/sqlite/package.json | Bumps vitest to match the root toolchain update. |
| examples/sqlite/package-lock.json | Regenerated lockfile to align with updated root dependency graph. |
| examples/basic/package.json | Bumps pg and vitest to match the root toolchain update. |
| examples/basic/package-lock.json | Regenerated lockfile to align with updated root dependency graph. |
Files not reviewed (2)
- examples/basic/package-lock.json: Generated file
- examples/sqlite/package-lock.json: Generated file
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Comment on lines
+68
to
70
| "@swc/core": "^1.15.43", | ||
| "@types/acorn": "^6.0.4", | ||
| "@types/better-sqlite3": "^7.6.13", |
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.
Bumps eslint, vitest, tsdown, pg, prettier, zod, @swc/core, acorn, typescript-eslint, @types/* etc. to latest. Two deps deliberately held: