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