Skip to content
Merged
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
3 changes: 1 addition & 2 deletions apps/docs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
"fumadocs-openapi": "10.8.1",
"fumadocs-ui": "16.8.5",
"lucide-react": "^0.511.0",
"next": "16.2.12",
"next": "16.3.0",
"next-themes": "^0.4.6",
"react": "19.2.4",
"react-dom": "19.2.4",
Expand All @@ -50,7 +50,6 @@
"@types/node": "24.2.1",
"@types/react": "^19.1.2",
"@types/react-dom": "^19.0.4",
"@typescript/native-preview": "7.0.0-dev.20260707.2",
Comment thread
waleedlatif1 marked this conversation as resolved.
"postcss": "^8.5.3",
"tailwindcss": "^4.0.12",
"typescript": "^7.0.2"
Expand Down
13 changes: 9 additions & 4 deletions apps/sim/next.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -219,12 +219,17 @@ const nextConfig: NextConfig = {
* it lives. Restoring across commits is separately undocumented-as-supported
* (vercel/next.js#87283 reports stale HTML from a cache built elsewhere).
*
* Pinned explicitly rather than left to the Next default: upstream already
* flips this default to true in canary/preview builds (vercel/next.js#94616),
* so relying on the default would let a version bump silently re-enable a
* config we measured as harmful.
* The explicit pin is load-bearing: 16.3.0 flipped this default to true for
* stable (vercel/next.js#94616), so dropping it re-enables the slower cache.
*/
turbopackFileSystemCacheForBuild: false,
/**
* TypeScript 7 ships no JavaScript compiler API until 7.1, so Next's default
* checker cannot load it — this shells out to the project-local `tsc` instead.
* Pinned because the failure mode is not slower type checking but none at all:
* 16.2.12 skipped the stage silently in 138ms.
*/
useTypeScriptCli: true,
preloadEntriesOnStart: false,
/**
* Under Turbopack this is not a no-op: the list feeds
Expand Down
3 changes: 1 addition & 2 deletions apps/sim/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@
"mongodb": "6.19.0",
"mysql2": "3.14.3",
"neo4j-driver": "6.0.1",
"next": "16.2.12",
"next": "16.3.0",
"next-mdx-remote": "^6.0.0",
"next-runtime-env": "3.3.0",
"next-themes": "^0.4.6",
Expand Down Expand Up @@ -260,7 +260,6 @@
"@types/react-dom": "^19",
"@types/ssh2": "^1.15.5",
"@types/three": "0.177.0",
"@typescript/native-preview": "7.0.0-dev.20260707.2",
"@vitejs/plugin-react": "^4.3.4",
"@vitest/coverage-v8": "^4.1.0",
"postcss": "^8",
Expand Down
129 changes: 32 additions & 97 deletions bun.lock

Large diffs are not rendered by default.

12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -79,8 +79,8 @@
"overrides": {
"react": "19.2.4",
"react-dom": "19.2.4",
"next": "16.2.12",
"@next/env": "16.2.12",
"next": "16.3.0",
"@next/env": "16.3.0",
"drizzle-orm": "^0.45.2",
"postgres": "^3.4.5",
"minimatch": "^10.2.5",
Expand All @@ -89,10 +89,10 @@
"e2b": "^2.36.1"
},
"optionalDependencies": {
"@next/swc-darwin-arm64": "16.2.12",
"@next/swc-darwin-x64": "16.2.12",
"@next/swc-linux-arm64-gnu": "16.2.12",
"@next/swc-linux-x64-gnu": "16.2.12"
"@next/swc-darwin-arm64": "16.3.0",
"@next/swc-darwin-x64": "16.3.0",
"@next/swc-linux-arm64-gnu": "16.3.0",
"@next/swc-linux-x64-gnu": "16.3.0"
},
"devDependencies": {
"@biomejs/biome": "2.0.0-beta.5",
Expand Down
2 changes: 1 addition & 1 deletion packages/browser-protocol/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,6 @@
"devDependencies": {
"@sim/tsconfig": "workspace:*",
"@types/node": "24.2.1",
"typescript": "^5.7.3"
"typescript": "^7.0.2"
}
}
2 changes: 1 addition & 1 deletion packages/emcn/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@
"framer-motion": "^12.5.0",
"input-otp": "^1.4.2",
"lucide-react": "^0.511.0",
"next": "16.2.12",
"next": "16.3.0",
"prismjs": "^1.30.0",
"react": "19.2.4",
"react-dom": "19.2.4",
Expand Down
2 changes: 1 addition & 1 deletion packages/terminal-protocol/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,6 @@
"devDependencies": {
"@sim/tsconfig": "workspace:*",
"@types/node": "24.2.1",
"typescript": "^5.7.3"
"typescript": "^7.0.2"
}
}
Loading