Include NodePath in artifact graph mermaid charts as comments (#6884)

* Display NodePath in artifact graph mermaid charts

* Update output

* Change node path display to be only comments

* Update output

* Update output after rebase
This commit is contained in:
Jonathan Tran
2025-05-14 01:31:58 -04:00
committed by GitHub
parent 811ef3e72d
commit 1e487ef3bd
161 changed files with 2339 additions and 1160 deletions

View File

@ -318,6 +318,10 @@ impl NodePath {
Some(path)
}
pub fn is_empty(&self) -> bool {
self.steps.is_empty()
}
fn push(&mut self, step: Step) {
self.steps.push(step);
}