jsonnet-compose/README.md

39 lines
479 B
Markdown
Raw Permalink Normal View History

# @sigyl/jsonnet-compose
2020-07-30 06:05:03 +00:00
functional composition for jsonnet
```jsonnet
local compose = import 'node_modules/jsonnet-compose/compose.libsonnet';
compose([
function(x) x+1,
function(x) x+2,
])(1)
```
use https://www.conventionalcommits.org/en/v1.0.0/ to control releases.
to release
2020-07-30 06:15:43 +00:00
```shell
2020-07-30 06:05:03 +00:00
yarn release
```
2020-07-30 06:15:43 +00:00
prerelease
```shell
yarn release --prerelease alpha
```
release as
```shell
yarn release --release-as 1.0.0
```
dry run
```shell
yarn release --dry-run
```