Skip to content

Commit 1835a7a

Browse files
erickzhaogitbook-bot
authored andcommitted
GITBOOK-208: Improve build lifecycle mermaid diagram
1 parent d26f4e0 commit 1835a7a

File tree

1 file changed

+10
-8
lines changed

1 file changed

+10
-8
lines changed

core-concepts/build-lifecycle.md

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,16 @@ Running each of these tasks will also run the previous ones in the sequence (i.e
1515
{% endhint %}
1616

1717
```mermaid fullWidth="false"
18-
graph TB
19-
dev["fa:fa-code development Electron project"] -.-> package
20-
publish -.-> cloud
21-
subgraph forge["fa:fa-hammer Electron Forge"]
22-
package["fa:fa-box Package"] -->|executable app bundle| make
23-
make["fa:fa-compact-disc Make"] -->|platform installers| publish["fa:fa-upload Publish"]
24-
end
25-
cloud["fa:fa-cloud Uploaded to cloud object storage"]
18+
graph LR
19+
dev["fa:fa-code electron.app"] -.-> forge
20+
forge -.-> cloud
21+
22+
subgraph forge["fa:fa-hammer Electron Forge"]
23+
direction TB
24+
package["fa:fa-box Package"] -->|executable app bundle| make
25+
make["fa:fa-compact-disc Make"] -->|distributable installers| publish["fa:fa-upload Publish"]
26+
end
27+
cloud["fa:fa-cloud Users"]
2628
```
2729

2830
## Step 1: Package

0 commit comments

Comments
 (0)