This repository has been archived by the owner on Oct 16, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdependency-graph.dot
43 lines (38 loc) · 1.89 KB
/
dependency-graph.dot
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
digraph {
graph [label = "thirdwavelist-android\n ",labelloc = t,fontsize = 30,ranksep = 1.4];
node [style = filled, fillcolor = "#bbbbbb"];
rankdir = TB;
# Projects
":app" [fillcolor = "#71b8ed"];
":features:details" [fillcolor = "#ff7a3a"];
":features:home" [fillcolor = "#ff7a3a"];
":features:settings" [fillcolor = "#ff7a3a"];
":libraries:core" [fillcolor = "#e0e0e0"];
":libraries:core-utils" [fillcolor = "#e0e0e0"];
":libraries:design" [fillcolor = "#e0e0e0"];
":libraries:navigation" [fillcolor = "#e0e0e0"];
{rank = same;}
# Dependencies
":app" -> ":app"
":app" -> ":libraries:core-utils" [style = dotted]
":app" -> ":libraries:core" [style = dotted]
":app" -> ":libraries:navigation" [style = dotted]
":app" -> ":libraries:design" [style = dotted]
":app" -> ":features:home" [style = dotted]
":app" -> ":features:details" [style = dotted]
":app" -> ":features:settings" [style = dotted]
":features:details" -> ":libraries:core-utils" [style = dotted]
":features:details" -> ":libraries:core" [style = dotted, style = dotted]
":features:details" -> ":libraries:navigation" [style = dotted]
":features:details" -> ":libraries:design" [style = dotted]
":features:home" -> ":libraries:core-utils" [style = dotted]
":features:home" -> ":libraries:core" [style = dotted, style = dotted]
":features:home" -> ":libraries:navigation" [style = dotted]
":features:home" -> ":libraries:design" [style = dotted]
":features:settings" -> ":libraries:core-utils" [style = dotted]
":features:settings" -> ":libraries:core" [style = dotted]
":features:settings" -> ":libraries:navigation" [style = dotted]
":features:settings" -> ":libraries:design" [style = dotted]
":libraries:core" -> ":libraries:core-utils" [style = dotted]
":libraries:navigation" -> ":libraries:core-utils" [style = dotted]
}