Compare commits
26 Commits
Author | SHA1 | Date |
---|---|---|
Giles | b19002dc18 | |
Giles | eb25b32d49 | |
Giles | f614fccde8 | |
Giles | 5fadeb6f7e | |
Giles | d9a30e614a | |
Giles | aaab076600 | |
Giles | f78ab406ef | |
Giles | b0dec15730 | |
Giles | 11f757bc1e | |
Giles | 5ebed219cd | |
Giles | 39f21ef40f | |
Giles | 20b051f791 | |
Giles | 38bdd3f952 | |
Giles | 7fe46dc195 | |
Giles | 5dd3af21cc | |
Giles | 24f8abd3a1 | |
Giles | 5dcb61a340 | |
Giles | d56b3b3f69 | |
Giles | 360fccc29a | |
Giles | a94146f2e6 | |
Giles | 27d115a219 | |
Giles | f2a0c80809 | |
Giles | e0bfffd0d3 | |
Giles | b1751264aa | |
Giles | 41d9ec8558 | |
Giles | ebfc2e93f3 |
|
@ -0,0 +1,30 @@
|
|||
[
|
||||
{
|
||||
// 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}',
|
||||
],
|
||||
},
|
||||
|
||||
],
|
||||
}
|
||||
]
|
|
@ -0,0 +1,25 @@
|
|||
---
|
||||
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
|
||||
|
||||
...
|
Binary file not shown.
|
@ -0,0 +1 @@
|
|||
node_modules
|
|
@ -0,0 +1,3 @@
|
|||
{
|
||||
"compareUrlFormat": "{{repoUrl}}/compare/{{previousTag}}...{{currentTag}}"
|
||||
}
|
29
CHANGELOG.md
29
CHANGELOG.md
|
@ -2,6 +2,35 @@
|
|||
|
||||
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)
|
||||
|
||||
### [0.0.11](host:https://github.com/owner:duxianwei520/repo:react/compare/v0.0.10...v0.0.11) (2020-07-29)
|
||||
|
||||
### [0.0.10](host:https://sigyl.com/owner:/repo:/compare/v0.0.9...v0.0.10) (2020-07-29)
|
||||
|
||||
### [0.0.9](host:https://sigyl.com//repo:/compare/v0.0.8...v0.0.9) (2020-07-29)
|
||||
|
||||
### [0.0.8](host:https://sigyl.com/repo:compose/compare/v0.0.7...v0.0.8) (2020-07-29)
|
||||
|
||||
### [0.0.7](https://sigyl.com/jsonnetcompose/compare/v0.0.6...v0.0.7) (2020-07-29)
|
||||
|
||||
### [0.0.6](https://sigyl.com//compare/v0.0.5...v0.0.6) (2020-07-29)
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
# compose
|
||||
|
||||
functional composition
|
||||
functional composition for jsonnet
|
||||
|
||||
```jsonnet
|
||||
local compose = import 'node_modules/jsonnet-compose/compose.libsonnet';
|
||||
|
@ -10,3 +10,5 @@ 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.7",
|
||||
"version": "0.0.19",
|
||||
"description": "function compose",
|
||||
"main": "compose.libsonnet",
|
||||
"scripts": {
|
||||
|
@ -10,7 +10,7 @@
|
|||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://sigyl.com/jsonnet/compose.git"
|
||||
"url": "https://sigyl.com/git/jsonnet/compose.git"
|
||||
},
|
||||
"keywords": [
|
||||
"jsonnet",
|
||||
|
|
Loading…
Reference in New Issue