fix(KB-140): fix standalone CLI native asset packaging for terminal support
- Stage node-pty native assets (pty.node, spawn-helper) alongside compiled binary - Add runtime native-patch.ts to resolve native assets in Bun-compiled binaries - Fix eager native module loading crash for non-terminal commands - Enable terminal functionality in isolated standalone deployments - Update release workflows and add STANDALONE.md documentation
This commit is contained in:
@@ -81,7 +81,7 @@ export async function runTaskList() {
|
||||
|
||||
if (tasks.length === 0) {
|
||||
console.log("\n No tasks yet. Create one with: kb task create\n");
|
||||
return;
|
||||
process.exit(0);
|
||||
}
|
||||
|
||||
console.log();
|
||||
@@ -105,6 +105,8 @@ export async function runTaskList() {
|
||||
}
|
||||
console.log();
|
||||
}
|
||||
|
||||
process.exit(0);
|
||||
}
|
||||
|
||||
export async function runTaskUpdate(id: string, stepStr: string, status: string) {
|
||||
|
||||
Reference in New Issue
Block a user