Skip to content

Latest commit

 

History

History
27 lines (21 loc) · 411 Bytes

File metadata and controls

27 lines (21 loc) · 411 Bytes

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]