(mode: OutputMode, deps: ProjectDeps)
| 525 | } |
| 526 | |
| 527 | function makeOutput(mode: OutputMode, deps: ProjectDeps): Output { |
| 528 | return new Output(mode, { stdout: deps.stdout, stderr: deps.stderr }); |
| 529 | } |
| 530 | |
| 531 | function renderProjectListText(page: Page<CliProject>): string { |
| 532 | if (page.items.length === 0) { |