Bundle build info.

interface BuildInfo {
    buildBranch: string;
    buildDate: string;
    buildHash: string;
    buildVersion: string;
    getBranchInfo(): string;
    isMasterBranch(): boolean;
}

Properties

buildBranch: string

Branch the sources of this build comes from.

buildDate: string

Date of build.

buildHash: string

Unique revision identifier to identify the source version.

buildVersion: string

Semantic version number.

Methods

  • Gives verbose branch information.

    Returns string

    textual branch information.

  • Returns whether the build is made off the master branch.

    Returns boolean

    true, if bundle was build from the master code base.

Generated using TypeDoc