# README

Graph plotting

The graph command presents a structured representation of the dependency graph that is constructed in the dependencies package.

Possible output formats are json, yaml, and flat.

The following dependency graph

A ← + ← C ← E
    ↑   ↑
    + ← D

would be encoded as

A: {}
C:
  0: [A]
D:
  0: [A, C]
E:
  0: [C]
  1: [A]

# Functions

No description provided by the author
GenerateUpToDown constructs a dependency graph that flows from upstream to downstream components (where component A is downstream of C if it depends on C).

# Constants

No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author

# Type aliases

ComponentDependencies holds a complete representation of all dependencies from upstream to downstream dependencies for all components.
DownToUp is a map from downstream components to all their direct upstream dependencies.
No description provided by the author
No description provided by the author