chore: fix build

This commit is contained in:
binekrasik
2026-05-18 00:14:49 +02:00
parent 4f4b72b915
commit d8ebbbe9e1
3 changed files with 4 additions and 3 deletions

1
.gitignore vendored
View File

@@ -32,3 +32,4 @@ bun.lock
# temp files
slop.md
.env*.local

View File

@@ -18,6 +18,6 @@ export class Alert {
}
Show(time: number = -1): void {
alert(`${this.title} [${this.severity}]: ${this.description}`)
alert(`${this.title} [${this.severity}]: ${this.description} (time: ${time})`)
}
}

View File

@@ -41,8 +41,8 @@ export class Wush extends Shell {
*/
private execExitCode: number = 0
// workers
private workersAllowed: boolean = false
// todo: workers
// private workersAllowed: boolean = false
// streams
readonly stdin: SimpleStream<string>