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

gottabe-plugin-dev / Exports / DependencyScopes

Namespace: DependencyScopes

Namespace for dependency scope definitions

Table of contents

Variables

Variables

COMPILE

Const COMPILE: string = 'compile'

The dependency will be used only at compiling time.

Defined in

base_types.ts:89


RUNTIME

Const RUNTIME: string = 'runtime'

The dependency is required at runtime

Defined in

base_types.ts:97


SHALLOW

Const SHALLOW: string = 'shallow'

The dependency is "shallow", in other words, the dependencies of the current dependency will not be loaded. It must be used with wisdom.

Defined in

base_types.ts:101


TEST

Const TEST: string = 'test'

The dependency will be used only in tests.

Defined in

base_types.ts:93