* Spawns a long-running child process and returns the `ChildProcess` object. * @param args The arguments to pass to the command. * @param options Options for the child process. * @returns The spawned `ChildProcess` instance.
(
args: readonly string[],
options?: {
stdio?: 'pipe' | 'ignore';
cwd?: string;
env?: Record<string, string>;
},
)
| 97 | * @returns The spawned `ChildProcess` instance. |
| 98 | */ |
| 99 | startNgProcess( |
| 100 | args: readonly string[], |
| 101 | options?: { |
| 102 | stdio?: 'pipe' | 'ignore'; |
no outgoing calls
no test coverage detected