ci: ignore

This commit is contained in:
Dax Raad
2025-08-03 10:41:30 -04:00
parent 7e763e1c06
commit 53aa899e45
4 changed files with 5 additions and 7 deletions

View File

@@ -6,7 +6,7 @@
"private": true,
"scripts": {
"typecheck": "tsc --noEmit",
"dev": "bun run ./src/index.ts"
"dev": "bun run --conditions=development ./src/index.ts"
},
"bin": {
"opencode": "./bin/opencode"

View File

@@ -122,6 +122,7 @@ export const BashTool = Tool.define("bash", {
maxBuffer: MAX_OUTPUT_LENGTH,
signal: ctx.abort,
timeout: timeout,
stdin: "pipe",
stdout: "pipe",
stderr: "pipe",
})