Skip to content

Commit 1698adb

Browse files
authored
Update index.md
1 parent 3e14440 commit 1698adb

File tree

1 file changed

+10
-14
lines changed

1 file changed

+10
-14
lines changed

docs/index.md

Lines changed: 10 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -12,20 +12,16 @@ See the [automatically generated catalog](scripts/index.md) of all the MLC scrip
1212
### MLC script execution flow
1313
```mermaid
1414
graph TD
15-
A[env = incoming env + env_from_meta] --> B[Script]
16-
B --> C[env - local_env_keys]
17-
C --> D[Dependencies]
18-
D --> E[Preprocess]
19-
E --> F[env - local_env_keys]
20-
F --> G[Prehook dependencies]
21-
G --> H[Run script]
22-
H --> I[env - clean_env_keys_post_deps]
23-
I --> J[Posthook dependencies]
24-
J --> K[Postprocess]
25-
K --> L[env - clean_env_keys_post_deps]
26-
L --> M[Post dependencies]
27-
M --> N[new_env_keys or incoming_env - env]
28-
N --> O[Script return]
15+
A[env = incoming env + env_from_meta] -->|Script| B
16+
B -->|env - local_env_keys| C
17+
C[Dependencies] -->|Preprocess| D
18+
D -->|env - local_env_keys| E
19+
E[Prehook dependencies] -->|Run script| F
20+
F -->|env - clean_env_keys_post_deps| G
21+
G[Posthook dependencies] -->|Postprocess| H
22+
H -->|env - clean_env_keys_post_deps| I
23+
I[Post dependencies] -->|new_env_keys or incoming_env - env| J
24+
J -->|Script return| K
2925
3026
```
3127

0 commit comments

Comments
 (0)