Conversation
📦 Bundle Size Report
Size Limits
Largest Files (Top 5)
View All Files (311 total)
✅ Bundle size check passed |
There was a problem hiding this comment.
Cursor Bugbot has reviewed your changes and found 1 potential issue.
❌ Bugbot Autofix is OFF. To automatically fix reported issues with cloud agents, have a team admin enable autofix in the Cursor dashboard.
Reviewed by Cursor Bugbot for commit e411966. Configure here.
| "react-syntax-highlighter": "16.1.1", | ||
| "typescript": "6.0.2" | ||
| "typescript": "6.0.2", | ||
| "@typescript/native-preview": "^7.0.0-dev.20260421.2" |
There was a problem hiding this comment.
Dev tool placed in production dependencies
Low Severity
@typescript/native-preview is added to dependencies instead of devDependencies in example/package.json. This is a TypeScript compiler/build tool used only for build and type-check scripts, not a runtime dependency. The root package.json correctly places it in devDependencies, making this inconsistent.
Reviewed by Cursor Bugbot for commit e411966. Configure here.
📊 Coverage Report⚪ Coverage unchanged
Detailed BreakdownLines Coverage
Statements Coverage
Functions Coverage
Branches Coverage
✅ Coverage check passed |
|
Deploy preview for remote-flows ready!
Deployed with vercel-action |


Note
Medium Risk
Changes the compiler used for builds/type-checking to a preview toolchain (
tsgo), which can alter CI/dev behavior and introduce environment-specific issues despite minimal runtime code changes.Overview
Switches both the root package and the
exampleapp’sbuild/type-checkscripts fromtsctotsgoby adding@typescript/native-previewas a dependency/devDependency.Updates lockfiles accordingly (including new platform-specific optional
@typescript/native-preview-*packages), bumps theexample’s local@remoteoss/remote-flowsreference to1.27.0, and refreshes the lockedtypescriptpatch version to6.0.3.Reviewed by Cursor Bugbot for commit e411966. Bugbot is set up for automated code reviews on this repo. Configure here.