Update dependencies and remove Bun lockfile#229
Open
radiantjade wants to merge 1 commit into
Open
Conversation
Issue tscircuit#79 asks for the dependency set to be moved forward while avoiding a checked-in Bun lockfile for Vercel deploys. This updates the frontend and tscircuit ecosystem packages, migrates Biome config for the new major version, removes the tracked bun.lock, and switches Vite path resolution to the native Vite 8 option. Constraint: bunfig.toml already disables lockfile saving, so the tracked bun.lock had to be removed rather than regenerated. Constraint: Latest tscircuit resolved an older root @tscircuit/props without a direct dependency, so @tscircuit/props is pinned at the root to satisfy core exports during Vite builds. Rejected: Leave vite-tsconfig-paths installed | Vite 8 warns that path resolution is now native. Confidence: medium Scope-risk: moderate Tested: bunx biome format --write vite.config.ts package.json biome.json Tested: rm -rf node_modules dist && bun install && test ! -f bun.lock && bun run build Not-tested: Vercel cloud deployment.
|
@radiantjade is attempting to deploy a commit to the tscircuit Team on Vercel. A member of the Team first needs to authorize it. |
Author
|
Demo/verification video for the claim record: https://github.com/radiantjade/circuitjson.com/releases/download/circuitjson-229-demo-20260515/circuitjson-229-demo.mp4 It summarizes the dependency update, lockfile behavior, local build verification, and the external Vercel team-authorization blocker. |
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.
Fixes #79
This updates the frontend/tooling and tscircuit ecosystem packages to current versions, removes the checked-in
bun.lock, and keeps the existingbunfig.tomllockfile-saving-disabled behavior intact.A couple of follow-up fixes were needed after the update:
biome.jsonto the Biome 2 config shapevite-tsconfig-pathsand enabled Vite 8 nativeresolve.tsconfigPaths@tscircuit/propsso the latesttscircuit/@tscircuit/coreexports resolve correctly during buildVerification:
bunx biome format --write vite.config.ts package.json biome.jsonrm -rf node_modules dist && bun install && test ! -f bun.lock && bun run buildThe build succeeds locally and
bun.lockis not regenerated after a fresh install./claim #79