(options = {})
| 32 | * signaling the direct child process there. |
| 33 | */ |
| 34 | export function getProcessTreeSpawnOptions(options = {}) { |
| 35 | return { |
| 36 | ...options, |
| 37 | shell: false, |
| 38 | detached: process.platform !== "win32", |
| 39 | }; |
| 40 | } |
| 41 | |
| 42 | /** |
| 43 | * Resolve a service command to a directly spawnable target on Windows. |
no outgoing calls
no test coverage detected