( command: string, rootFolder: string = process.cwd(), _usePatched: boolean = false, )
| 133 | return fullPath |
| 134 | } |
| 135 | export function getCommandBin( |
| 136 | command: string, |
| 137 | rootFolder: string = process.cwd(), |
| 138 | _usePatched: boolean = false, |
| 139 | ) { |
| 140 | const bin = resolveBin(command) |
| 141 | return path.resolve(rootFolder, bin) |
| 142 | } |
| 143 | |
| 144 | export function runBlitzCommand(argv, options: RunNextCommandOptions = {}) { |
| 145 | const nextnextbin = getCommandBin("blitz", options.cwd) |
no test coverage detected