Package version:

Model representing a pre-build step.

interface PreBuildStep {
    description?: string;
    httpGet?: HttpGet;
    scripts?: string[];
}

Properties

description?: string

Description of the pre-build step.

httpGet?: HttpGet

Http get request to send before the build.

scripts?: string[]

List of custom commands to run.