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