Skip to content

Commit

Permalink
GITBOOK-208: Improve build lifecycle mermaid diagram
Browse files Browse the repository at this point in the history
  • Loading branch information
erickzhao authored and gitbook-bot committed Feb 13, 2025
1 parent d26f4e0 commit 1835a7a
Showing 1 changed file with 10 additions and 8 deletions.
18 changes: 10 additions & 8 deletions core-concepts/build-lifecycle.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,16 @@ Running each of these tasks will also run the previous ones in the sequence (i.e
{% endhint %}

```mermaid fullWidth="false"
graph TB
dev["fa:fa-code development Electron project"] -.-> package
publish -.-> cloud
subgraph forge["fa:fa-hammer Electron Forge"]
package["fa:fa-box Package"] -->|executable app bundle| make
make["fa:fa-compact-disc Make"] -->|platform installers| publish["fa:fa-upload Publish"]
end
cloud["fa:fa-cloud Uploaded to cloud object storage"]
graph LR
dev["fa:fa-code electron.app"] -.-> forge
forge -.-> cloud
subgraph forge["fa:fa-hammer Electron Forge"]
direction TB
package["fa:fa-box Package"] -->|executable app bundle| make
make["fa:fa-compact-disc Make"] -->|distributable installers| publish["fa:fa-upload Publish"]
end
cloud["fa:fa-cloud Users"]
```

## Step 1: Package
Expand Down

0 comments on commit 1835a7a

Please sign in to comment.