We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d06bb0c commit a4b6a8dCopy full SHA for a4b6a8d
README.md
@@ -132,6 +132,13 @@ flowchart LR
132
client_typecheck{{"typecheck"}}
133
end
134
135
+ subgraph graph_gen["graph-gen"]
136
+ graph_gen_build[["build"]]
137
+ graph_gen_lint{{"lint"}}
138
+ graph_gen_test(["test"])
139
+ graph_gen_typecheck{{"typecheck"}}
140
+ end
141
+
142
subgraph tools["tools"]
143
tools_lint{{"lint"}}
144
tools_typecheck{{"typecheck"}}
@@ -182,6 +189,8 @@ flowchart LR
182
189
utils_build --> client_test
183
190
types_build --> client_typecheck
184
191
utils_build --> client_typecheck
192
+ graph_gen_typecheck --> graph_gen_build
193
+ graph_gen_typecheck --> graph_gen_test
185
194
web_build --> tools_typecheck
186
195
types_typecheck --> types_build
187
196
ui_typecheck --> ui_build
0 commit comments