Phase - gottabe-io/gottabe-plugin-dev GitHub Wiki

gottabe-plugin-dev / Exports / Phase

Enumeration: Phase

Define the possible phases of the build

Table of contents

Enumeration members

Enumeration members

CLEAN

CLEAN = 0

The cleaning phase. This phase occours when the clean task is added to the command line

Defined in

base_types.ts:25


COMPILE

COMPILE = 2

The compiling phase. It occours when the build task is added to the command line

Defined in

base_types.ts:33


INSTALL

INSTALL = 6

The installing phase.

Defined in

base_types.ts:49


LINK

LINK = 3

The linking phase. It occours after the compile phase in the build task

Defined in

base_types.ts:37


PACKAGE

PACKAGE = 5

The packaging phase. It occours when the package task is added to the command line.

Defined in

base_types.ts:45


PUBLISH

PUBLISH = 7

The publishing phase.

Defined in

base_types.ts:53


RESOLVE_DEPENDENCIES

RESOLVE_DEPENDENCIES = 1

It occours before the compile phase and it's when the dependencies are loaded

Defined in

base_types.ts:29


TEST

TEST = 4

The test phase can occour when the task test is added or after the build

Defined in

base_types.ts:41