Skip to content

Commit ae0aa4d

Browse files
Replace opentui workspace dependencies with file: dependencies
Remove symlinks and use direct package references with prebuild script. 🤖 Generated with Codebuff Co-Authored-By: Codebuff <noreply@codebuff.com>
1 parent dce6120 commit ae0aa4d

File tree

2 files changed

+28
-4
lines changed

2 files changed

+28
-4
lines changed

bun.lock

Lines changed: 24 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

cli/package.json

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,9 @@
1616
},
1717
"scripts": {
1818
"dev": "bun run --watch src/index.tsx",
19+
"prebuild": "bun run build:opentui",
1920
"build": "bun build src/index.tsx --outdir dist --target node --format esm",
21+
"build:opentui": "cd ../packages/opentui && bun run build",
2022
"start": "bun run dist/index.js",
2123
"typecheck": "tsc --noEmit -p ."
2224
},
@@ -26,8 +28,8 @@
2628
},
2729
"dependencies": {
2830
"@codebuff/sdk": "workspace:*",
29-
"@opentui/react": "workspace:*",
30-
"@opentui/core": "workspace:*",
31+
"@opentui/react": "file:../packages/opentui/packages/react",
32+
"@opentui/core": "file:../packages/opentui/packages/core",
3133
"react": "^19.0.0",
3234
"remark-parse": "^11.0.0",
3335
"unified": "^11.0.0"

0 commit comments

Comments
 (0)