| Crates.io | yexp |
| lib.rs | yexp |
| version | 0.2.2 |
| created_at | 2024-04-25 07:30:41.132864+00 |
| updated_at | 2024-05-08 10:14:44.343427+00 |
| description | yexp is a small tool for expand yaml files |
| homepage | |
| repository | https://github.com/fixcik/yexp |
| max_upload_size | |
| id | 1219861 |
| size | 53,836 |
yexp is a small tool for expand yaml files
a.yaml
- one
- two
- three
b.yaml
items: !include path/to/a.yaml
c.yaml
foo: bar
extend: # <- can be string or sequence of strings
- path/to/b.yaml
yexp /path/to/c.yaml outputs:
foo: bar
items:
- one
- two
- three
Download the latest releases from the GitHub release page.
cargo install yexp
brew tap fixcik/tap
brew install yexp