feat(smartshell): add cwd-aware execution options, structured strict-mode errors, and safer process tree termination

This commit is contained in:
2026-05-09 13:48:16 +00:00
parent e61b352576
commit d65e1ed4f6
17 changed files with 3830 additions and 4812 deletions
+3 -3
View File
@@ -8,8 +8,8 @@ export interface IDeferred<T> {
}
export class SmartExecution {
public smartshell: Smartshell;
public currentStreamingExecution: IExecResultStreaming;
public smartshell!: Smartshell;
public currentStreamingExecution!: IExecResultStreaming;
public commandString: string;
private isRestartInProgress = false;
@@ -52,4 +52,4 @@ export class SmartExecution {
await this.restart();
}
}
}
}