Skip to content

Signatures

targetToTargetString(target: Target): string

Returns a string in the format “project:target[:configuration]” for the target

Parameters

  • target: Target - target object

Examples:

targetToTargetString({ project: "proj", target: "test" }) // returns "proj:test"
targetToTargetString({ project: "proj", target: "test", configuration: "production" }) // returns "proj:test:production"