Skip to content

Target Aliases

A target alias is a lightweight entry in a BUILD file that simply points to another target. It has its own label but no command or outputs. When you build an alias, Grog will transparently build the aliased target.

Fields

FieldTypeDescription
namestringUnique identifier for the alias within its package
actuallabelLabel of the target that this alias points to

Example

aliases:
- name: default
actual: :build_app

Running grog build :default would build the :build_app target.