(command: string[], options: Parameters<typeof spawnSync>[2])
| 27 | ); |
| 28 | |
| 29 | const run = (command: string[], options: Parameters<typeof spawnSync>[2]) => |
| 30 | spawnSync(nodeBin, [reactRouterBin, ...command], options); |
| 31 | |
| 32 | const getBinNodeEnv = (command: string[]) => { |
| 33 | let cwd = mkdtempSync(path.join(tmpdir(), "react-router-bin-")); |