Compare commits

...

19 Commits

Author SHA1 Message Date
Giles b19002dc18 feat: ths should bump minor 2020-07-29 20:51:26 +01:00
Giles eb25b32d49 chore(release): 0.0.19 2020-07-29 20:48:44 +01:00
Giles f614fccde8 fix: just adding a comment should do semver 2020-07-29 20:47:54 +01:00
Giles 5fadeb6f7e chore(release): 0.0.18 2020-07-29 20:45:19 +01:00
Giles d9a30e614a . 2020-07-29 20:44:18 +01:00
Giles aaab076600 . 2020-07-29 20:42:03 +01:00
Giles f78ab406ef . 2020-07-29 20:36:52 +01:00
Giles b0dec15730 . 2020-07-29 20:35:32 +01:00
Giles 11f757bc1e .
continuous-integration/drone/push Build is passing Details
2020-07-29 20:32:22 +01:00
Giles 5ebed219cd on tag event
continuous-integration/drone/push Build is passing Details
2020-07-29 20:26:17 +01:00
Giles 39f21ef40f added drone tag and commit echo
continuous-integration/drone/push Build is passing Details
2020-07-29 20:19:46 +01:00
Giles 20b051f791 added drone tag and commit echo
continuous-integration/drone/push Build is passing Details
2020-07-29 20:17:47 +01:00
Giles 38bdd3f952 added drone tag and commit echo
continuous-integration/drone/push Build is passing Details
2020-07-29 20:16:34 +01:00
Giles 7fe46dc195 added alpine step
continuous-integration/drone/push Build is passing Details
2020-07-29 20:14:56 +01:00
Giles 5dd3af21cc .
continuous-integration/drone/push Build is passing Details
2020-07-29 20:09:10 +01:00
Giles 24f8abd3a1 chore(release): 0.0.17 2020-07-29 19:44:09 +01:00
Giles 5dcb61a340 chore(release): 0.0.16 2020-07-29 19:42:05 +01:00
Giles d56b3b3f69 chore(release): 0.0.15 2020-07-29 19:28:32 +01:00
Giles 360fccc29a chore(release): 0.0.14 2020-07-29 19:28:25 +01:00
9 changed files with 1645 additions and 2 deletions

30
.drone/.drone.jsonnet Normal file
View File

@ -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}',
],
},
],
}
]

25
.drone/.drone.yml Normal file
View File

@ -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
...

BIN
.drone/drone Executable file

Binary file not shown.

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
node_modules

3
.versionrc.json Normal file
View File

@ -0,0 +1,3 @@
{
"compareUrlFormat": "{{repoUrl}}/compare/{{previousTag}}...{{currentTag}}"
}

View File

@ -2,6 +2,23 @@
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)

View File

@ -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.

View File

@ -1,6 +1,6 @@
{
"name": "@sigyl/jsonnet-compose",
"version": "0.0.13",
"version": "0.0.19",
"description": "function compose",
"main": "compose.libsonnet",
"scripts": {

1565
yarn.lock Normal file

File diff suppressed because it is too large Load Diff