Skip to content

Commit dee50a6

Browse files
FL4TLiN3claude
andauthored
fix: sync lockfile after changeset version bump (#763)
The changeset release PR was failing CI because `bun.lock` was not updated after `changeset version` bumped package versions. Add `bun install --no-frozen-lockfile` to the version script so the lockfile is regenerated and committed with the release PR. Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 9b911e5 commit dee50a6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"reset": "turbo run reset",
1515
"build": "turbo run build",
1616
"changeset": "changeset",
17-
"version": "changeset version",
17+
"version": "changeset version && bun install --no-frozen-lockfile",
1818
"release": "bun run clean && bun run build && node -e \"var f=require('fs'),p=JSON.parse(f.readFileSync('package.json'));p.packageManager='pnpm@10.10.0';f.writeFileSync('package.json',JSON.stringify(p,null,2)+'\\n')\" && changeset publish; rc=$?; git checkout package.json; exit $rc",
1919
"test": "turbo run test",
2020
"test:watch": "bun test --watch packages/ apps/",

0 commit comments

Comments
 (0)