( workspace: workspaces.WorkspaceDefinition, )
| 134 | } |
| 135 | |
| 136 | export function* allWorkspaceTargets( |
| 137 | workspace: workspaces.WorkspaceDefinition, |
| 138 | ): Iterable<[string, workspaces.TargetDefinition, string, workspaces.ProjectDefinition]> { |
| 139 | for (const [projectName, project] of workspace.projects) { |
| 140 | for (const [targetName, target] of project.targets) { |
| 141 | yield [targetName, target, projectName, project]; |
| 142 | } |
| 143 | } |
| 144 | } |
| 145 | |
| 146 | export function* allTargetOptions( |
| 147 | target: workspaces.TargetDefinition, |
no outgoing calls
no test coverage detected