Skip to content
Draft
Changes from 1 commit
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
6 changes: 5 additions & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -448,7 +448,11 @@ async function prep(cfg: Cfg, sources: IntegrationSource[], log: string) {
},
);
}
await run(["bun", "install"], {
// --frozen-lockfile: respect the base repo's committed bun.lock so a fresh
// resolve can't drift catalog-pinned deps. Without it, bun satisfies loose
// peer ranges (e.g. @opentui/core ">=0.2.16") with registry-latest (0.3.0),
// bundling an incompatible TUI renderer that crashes on `streamOwners.get`.
await run(["bun", "install", "--frozen-lockfile"], {
cwd: cfg.work_repo,
log,
});
Expand Down