({ project, target, configuration }: Target)
| 326 | * Returns a string of "project:target[:configuration]" for the target object. |
| 327 | */ |
| 328 | export function targetStringFromTarget({ project, target, configuration }: Target) { |
| 329 | return `${project}:${target}${configuration !== undefined ? ':' + configuration : ''}`; |
| 330 | } |
| 331 | |
| 332 | /** |
| 333 | * Return a Target tuple from a specifier string. |
no outgoing calls
no test coverage detected