Skip to content

Commit

Permalink
fix(build-env): diagram direction
Browse files Browse the repository at this point in the history
  • Loading branch information
BioPhoton authored Sep 13, 2024
1 parent 1946fbf commit 6b80130
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
```
Expand Down Expand Up @@ -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
Expand All @@ -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
Expand All @@ -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
Expand Down

0 comments on commit 6b80130

Please sign in to comment.