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
RUNTIME
• Const RUNTIME: string = 'runtime'
The dependency is required at runtime
Defined in
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
TEST
• Const TEST: string = 'test'
The dependency will be used only in tests.