(cwd: string)
| 114 | } |
| 115 | |
| 116 | async function listWorkspaceProjects(cwd: string): Promise<WizardProject[]> { |
| 117 | const { workspaces } = await listWorkspaces(cwd); |
| 118 | return workspaces.map(pkg => toProject(cwd, pkg)); |
| 119 | } |
| 120 | |
| 121 | export async function addCodePushUpCommand( |
| 122 | tree: Tree, |
no test coverage detected