Compare commits
No commits in common. "master" and "v0.0.13" have entirely different histories.
|
@ -1,30 +0,0 @@
|
|||
[
|
||||
{
|
||||
// test pipeline
|
||||
name: 'test pipe',
|
||||
kind: 'pipeline',
|
||||
type: 'docker',
|
||||
trigger: {
|
||||
event: ['tag'],
|
||||
},
|
||||
clone: {
|
||||
disable: false,
|
||||
depth: 0,
|
||||
},
|
||||
steps: [
|
||||
{
|
||||
name: 'step',
|
||||
image: 'alpine',
|
||||
when: {
|
||||
event: ['tag'],
|
||||
},
|
||||
commands: [
|
||||
'echo hello',
|
||||
'echo $${DRONE_COMMIT}',
|
||||
'echo $${DRONE_TAG}',
|
||||
],
|
||||
},
|
||||
|
||||
],
|
||||
}
|
||||
]
|
|
@ -1,25 +0,0 @@
|
|||
---
|
||||
kind: pipeline
|
||||
type: docker
|
||||
name: test pipe
|
||||
|
||||
platform:
|
||||
os: linux
|
||||
arch: amd64
|
||||
|
||||
steps:
|
||||
- name: step
|
||||
image: alpine
|
||||
commands:
|
||||
- echo hello
|
||||
- echo $${DRONE_COMMIT}
|
||||
- echo $${DRONE_TAG}
|
||||
when:
|
||||
event:
|
||||
- tag
|
||||
|
||||
trigger:
|
||||
event:
|
||||
- tag
|
||||
|
||||
...
|
BIN
.drone/drone
BIN
.drone/drone
Binary file not shown.
|
@ -1 +0,0 @@
|
|||
node_modules
|
|
@ -1,3 +0,0 @@
|
|||
{
|
||||
"compareUrlFormat": "{{repoUrl}}/compare/{{previousTag}}...{{currentTag}}"
|
||||
}
|
17
CHANGELOG.md
17
CHANGELOG.md
|
@ -2,23 +2,6 @@
|
|||
|
||||
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
||||
|
||||
### [0.0.19](https://sigyl.com/git/jsonnet/compose/compare/v0.0.18...v0.0.19) (2020-07-29)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* just adding a comment should do semver ([f614fcc](https://sigyl.com///commit/f614fccde8a51f2244ec77830d1f5c5ec42ca150))
|
||||
|
||||
### [0.0.18](https://sigyl.com/git/jsonnet/compose/compare/v0.0.17...v0.0.18) (2020-07-29)
|
||||
|
||||
### [0.0.17](https://sigyl.com/git/jsonnet/compose/compare/v0.0.16...v0.0.17) (2020-07-29)
|
||||
|
||||
### [0.0.16](https://sigyl.com/git/jsonnet/compose/compare/v0.0.15...v0.0.16) (2020-07-29)
|
||||
|
||||
### [0.0.15](https://sigyl.com/git/jsonnet/compose/compare/v0.0.14...v0.0.15) (2020-07-29)
|
||||
|
||||
### [0.0.14](https://sigyl.com/git/jsonnet/compose/compare/v0.0.13...v0.0.14) (2020-07-29)
|
||||
|
||||
### [0.0.13](host:https://sigyl.com/owner:/repo:/compare/v0.0.12...v0.0.13) (2020-07-29)
|
||||
|
||||
### [0.0.12](host:https://sigyl.com/owner:jsonnet/repo:compose/compare/v0.0.11...v0.0.12) (2020-07-29)
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
# compose
|
||||
|
||||
functional composition for jsonnet
|
||||
functional composition
|
||||
|
||||
```jsonnet
|
||||
local compose = import 'node_modules/jsonnet-compose/compose.libsonnet';
|
||||
|
@ -10,5 +10,3 @@ compose([
|
|||
function(x) x+2,
|
||||
])(1)
|
||||
```
|
||||
|
||||
use https://www.conventionalcommits.org/en/v1.0.0/ to control releases.
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@sigyl/jsonnet-compose",
|
||||
"version": "0.0.19",
|
||||
"version": "0.0.13",
|
||||
"description": "function compose",
|
||||
"main": "compose.libsonnet",
|
||||
"scripts": {
|
||||
|
|
Loading…
Reference in New Issue