docs: link making binary packages

This commit is contained in:
daimond113 2024-11-20 18:40:36 +01:00
parent d52a9cb615
commit 00d4515849
No known key found for this signature in database
GPG key ID: 3A8ECE51328B513C
2 changed files with 3 additions and 1 deletions

View file

@ -8,6 +8,8 @@ A **binary package** is a package that contains a binary export.
Binary packages can be run like a normal program. There are several ways to use Binary packages can be run like a normal program. There are several ways to use
binary packages with pesde. binary packages with pesde.
To make your own binary package, see the [guide](/quickstart#adding-a-main-script).
## Using `pesde x` ## Using `pesde x`
The `pesde x` command can be used to run a one-off binary package. This is The `pesde x` command can be used to run a one-off binary package. This is

View file

@ -29,7 +29,7 @@ Within the root `pesde.toml` file, we can define a workspace:
```toml title="pesde.toml" ```toml title="pesde.toml"
name = "acme/root" name = "acme/root"
version = "0.0.0" version = "0.0.0"
private = "true" private = true
workspace_members = ["pkgs/*"] workspace_members = ["pkgs/*"]