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 @@ -54,7 +54,7 @@
"oxfmt": "^0.60.0",
"oxlint": "^1.75.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 breaks installs

High Severity

package.json now requests typescript ^7.0.2 and jsdom ^30.0.1, but bun.lock still resolves typescript@6.0.3 and jsdom@29.1.1. CI runs bun install --frozen-lockfile, so installs fail with a lockfile mismatch before any tests or builds run.

Additional Locations (2)
Fix in Cursor Fix in Web

Reviewed by Cursor Bugbot for commit 9fc1f78. Configure here.

"vite": "^8.1.5"
},
"engines": {
Expand Down
4 changes: 2 additions & 2 deletions packages/app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -93,11 +93,11 @@
"cypress-split": "^1.25.0",
"esbuild": "^0.28.1",
"fake-indexeddb": "^6.2.5",
"jsdom": "^29.1.1",
"jsdom": "^30.0.1",
"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 breaks Next.js builds

High Severity

Bumping typescript to ^7.0.2 lands the native compiler, which no longer ships the JavaScript compiler API that Next.js uses by default. With next@16.2.12 and no experimental.useTypeScriptCli in next.config.ts, next build exits instead of typechecking, so production and E2E builds fail.

Additional Locations (1)
Fix in Cursor Fix in Web

Reviewed by Cursor Bugbot for commit 2ff3905. Configure here.

"vitest": "^4.1.10"
},
"engines": {
Expand Down
2 changes: 1 addition & 1 deletion packages/db/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
"@types/stream-json": "^1.7.8",
"@vitest/coverage-v8": "^4.1.10",
"adm-zip": "^0.6.0",
"typescript": "^6.0.3",
"typescript": "^7.0.2",
"vitest": "^4.1.10"
}
}
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.1.1",
"typescript": "^6.0.3",
"typescript": "^7.0.2",
"vitest": "^4.1.10"
}
}
Loading