Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
"oxfmt": "^0.65.0",
"oxlint": "^1.80.0",
"rimraf": "^6.1.3",
"typescript": "^6.0.3",
"typescript": "^7.0.2",

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Stale lockfile after TypeScript bump

High Severity

typescript is bumped to ^7.0.2 in package manifests, but bun.lock still pins typescript@6.0.3 and still records ^6.0.3 workspace ranges. CI runs bun install --frozen-lockfile, so installs fail before lint, typecheck, or tests can run.

Additional Locations (2)
Fix in Cursor Fix in Web

Reviewed by Cursor Bugbot for commit b930695. Configure here.

"vite": "^8.2.2"
},
"overrides": {
Expand Down
2 changes: 1 addition & 1 deletion packages/app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@
"rimraf": "^6.1.3",
"tailwindcss": "^4.3.3",
"tw-animate-css": "^1.4.0",
"typescript": "^6.0.3",
"typescript": "^7.0.2",

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

TypeScript 7 drops compiler API

High Severity

Bumping typescript to ^7.0.2 removes the JavaScript compiler API that api-route-catalog.test.ts imports. Helpers such as createSourceFile and SyntaxKind are no longer exported, so route-catalog unit tests crash and tsc --noEmit fails on that file.

Additional Locations (1)
Fix in Cursor Fix in Web

Reviewed by Cursor Bugbot for commit b981b07. Configure here.

"vfile": "^6.0.3",
"vitest": "^4.1.11"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/db/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
"@types/stream-json": "^1.7.8",
"@vitest/coverage-v8": "^4.1.11",
"adm-zip": "^0.6.0",
"typescript": "^6.0.3",
"typescript": "^7.0.2",
"vitest": "^4.1.11"
}
}
2 changes: 1 addition & 1 deletion packages/mcp/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
},
"devDependencies": {
"@types/node": "^26.4.0",
"typescript": "^6.0.3",
"typescript": "^7.0.2",
"vitest": "^4.1.11"
}
}
Loading