Compare commits

...
2 changed files with 7 additions and 1 deletions
+5
View File
@@ -0,0 +1,5 @@
---
"claude-dev": patch
---
Update terminal error timeout from 500 -> 5000
+2 -1
View File
@@ -37,7 +37,8 @@ export class TerminalProcess extends EventEmitter<TerminalProcessEvents> {
let didEmitEmptyLine = false
let firstChunkTimeout: NodeJS.Timeout
const timeoutMs = 500
const isWindows = process.platform === "win32"
const timeoutMs = isWindows ? 5000 : 500
const onTimeout = () => {
// In rare cases (e.g. running the same command twice like `npm run build`),