* Spawns a child process and returns a promise that resolves with the process's * output or rejects with a structured error. * @param args The arguments to pass to the command. * @param options Options for the child process. * @returns A promise that resolves with the standard output and
(
args: readonly string[],
options?: {
timeout?: number;
stdio?: 'pipe' | 'ignore';
cwd?: string;
env?: Record<string, string>;
},
)
| 81 | * @returns A promise that resolves with the standard output and standard error of the command. |
| 82 | */ |
| 83 | executeNgCommand( |
| 84 | args: readonly string[], |
| 85 | options?: { |
| 86 | timeout?: number; |
no outgoing calls
no test coverage detected