pax-example 0.6.10

Example and development app for the Pax monorepo and compiler
Documentation
1
2
3
4
5
6
7
8
9
10
11
#!/bin/bash

### Helper binary for pax libdev, allowing pax-cli-like ergonomics inside the pax-example directory
### For example, from @/pax root:
### `cd pax-example && ./pax run --target=macos`
### `cd pax-example && ./pax parse`
### `cd pax-example && ./pax libdev build-chassis`

pushd ../pax-cli
cargo run -- "$@" --path="../pax-example" --libdev
popd