From 6b80130ed518ee8af76a39673906773fab1ae79c Mon Sep 17 00:00:00 2001 From: Michael Hladky <10064416+BioPhoton@users.noreply.github.com> Date: Fri, 13 Sep 2024 19:22:16 +0300 Subject: [PATCH] fix(build-env): diagram direction --- README.md | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index bd4dd06a..66862935 100644 --- a/README.md +++ b/README.md @@ -53,7 +53,7 @@ To elaborate on the performance issues, we show the different cases while writin ##### Changes in source ```mermaid -flowchart LR +flowchart TB P[project-e2e:e2e]:::e2e-.implicit.->E[project:build]:::build; classDef e2e stroke:#f00 classDef build stroke:#f00 @@ -71,6 +71,7 @@ classDef build stroke:#f00 ##### Changes in tests ```mermaid +flowchart TB P[project-e2e:e2e]:::e2e-.implicit.->E[project:build]:::build; classDef e2e stroke:#f00 ``` @@ -111,7 +112,7 @@ To elaborate on the performance improvements, we show the different cases while ##### Changes in source ```mermaid -flowchart LR +flowchart TB P[project-e2e:e2e]:::e2e-.implicit.->S[project-e2e:setup-env]:::build; S-.implicit.->E[project:build]:::build; classDef e2e stroke:#f00 @@ -122,8 +123,8 @@ classDef build stroke:#f00 ##### Changes in the test environments ```mermaid -flowchart LR -P[project-e2e:e2e]:::e2e-.implicit.->S[project-e2e:setup-env]:::build; +flowchart TB +P[project-e2e:e2e]:::e2e-.implicit.->S[project-e2e:setup-env]:::setup-env; S-.implicit.->E[project:build]:::build; classDef e2e stroke:#f00 classDef setup-env stroke:#f00 @@ -132,7 +133,7 @@ classDef setup-env stroke:#f00 ##### Changes in tests ```mermaid -flowchart LR +flowchart TB P[project-e2e:e2e]:::e2e-.implicit.->S[project-e2e:setup-env]:::build; S-.implicit.->E[project:build]:::build; classDef e2e stroke:#f00