@kaban-board/tui 0.2.12 → 0.2.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +2 -2
- package/package.json +3 -3
package/dist/index.js
CHANGED
|
@@ -19,7 +19,7 @@ var __toESM = (mod, isNodeMode, target) => {
|
|
|
19
19
|
var __require = import.meta.require;
|
|
20
20
|
|
|
21
21
|
// src/index.ts
|
|
22
|
-
import { BoardService as BoardService2, createDb as createDb2, TaskService } from "@kaban-board/core";
|
|
22
|
+
import { BoardService as BoardService2, createDb as createDb2, TaskService } from "@kaban-board/core/bun";
|
|
23
23
|
import { createCliRenderer } from "@opentui/core";
|
|
24
24
|
|
|
25
25
|
// src/components/board.ts
|
|
@@ -2104,7 +2104,7 @@ import {
|
|
|
2104
2104
|
createDb,
|
|
2105
2105
|
DEFAULT_CONFIG,
|
|
2106
2106
|
initializeSchema
|
|
2107
|
-
} from "@kaban-board/core";
|
|
2107
|
+
} from "@kaban-board/core/bun";
|
|
2108
2108
|
function findKabanRoot(startDir) {
|
|
2109
2109
|
let dir = startDir;
|
|
2110
2110
|
while (dir !== "/") {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kaban-board/tui",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.13",
|
|
4
4
|
"description": "Terminal User Interface for Kaban - Kanban for AI Agents",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -11,14 +11,14 @@
|
|
|
11
11
|
],
|
|
12
12
|
"scripts": {
|
|
13
13
|
"build": "bun build ./src/index.ts --outdir ./dist --target bun --packages external && chmod +x ./dist/index.js",
|
|
14
|
-
"build:bin": "bun build --compile --minify ./src/index.ts --outfile ./dist/kaban-tui --external @libsql/client",
|
|
14
|
+
"build:bin": "bun build --compile --minify ./src/index.ts --outfile ./dist/kaban-tui --external @libsql/client --define \"process.env.KABAN_NO_LIBSQL='true'\"",
|
|
15
15
|
"dev": "bun run ./src/index.ts",
|
|
16
16
|
"test": "bun test",
|
|
17
17
|
"typecheck": "tsc --noEmit",
|
|
18
18
|
"prepublishOnly": "npm run build"
|
|
19
19
|
},
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"@kaban-board/core": "0.2.
|
|
21
|
+
"@kaban-board/core": "0.2.13",
|
|
22
22
|
"@opentui/core": "^0.1.69"
|
|
23
23
|
},
|
|
24
24
|
"devDependencies": {
|