nx/docs/generated/devkit/StaticDependency.md
Craigory Coppola f2e20c81b6
cleanup(core): adjust create dependencies context (#19070)
Co-authored-by: FrozenPandaz <jasonjean1993@gmail.com>
2023-09-12 09:01:32 -04:00

2.1 KiB

Type alias: StaticDependency

Ƭ StaticDependency: Object

A static ProjectGraph dependency between 2 projects

This type of dependency indicates the source project ALWAYS load the target project.

NOTE: StaticDependency#sourceFile MUST be present unless the source is the name of a ProjectGraphExternalNode

Type declaration

Name Type Description
source string The name of a ProjectGraphProjectNode or ProjectGraphExternalNode depending on the target project
sourceFile? string The path of a file (relative from the workspace root) where the dependency is made
target string The name of a ProjectGraphProjectNode or ProjectGraphExternalNode that the source project depends on
type typeof static -