6 Commits

Author SHA1 Message Date
c0753c185f 0.0.4 2016-06-18 15:13:06 +02:00
dad659e2ed fix description 2016-06-18 15:13:02 +02:00
d1f1ae271a 0.0.3 2016-06-18 15:09:48 +02:00
7bd18cb927 fix branches for ci 2016-06-18 15:09:44 +02:00
56b5adac16 0.0.2 2016-06-18 15:08:06 +02:00
56180af583 integrate gitlab ci 2016-06-18 15:07:54 +02:00
8 changed files with 52 additions and 2 deletions

38
.gitlab-ci.yml Normal file
View File

@ -0,0 +1,38 @@
image: hosttoday/ht-docker-node:npmts
stages:
- test
- release
testLEGACY:
stage: test
script:
- npmci test legacy
tags:
- docker
- lossless
testLTS:
stage: test
script:
- npmci test lts
tags:
- docker
- lossless
testSTABLE:
stage: test
script:
- npmci test stable
tags:
- docker
- lossless
release:
stage: release
script:
- npmci publish npm
only:
- tags
tags:
- lossless

0
dist/hook.d.ts vendored Normal file
View File

3
dist/hook.js vendored Normal file
View File

@ -0,0 +1,3 @@
//# sourceMappingURL=data:application/json;charset=utf8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiIsImZpbGUiOiJob29rLmpzIiwic291cmNlc0NvbnRlbnQiOltdfQ==

0
dist/index.d.ts vendored Normal file
View File

3
dist/index.js vendored Normal file
View File

@ -0,0 +1,3 @@
//# sourceMappingURL=data:application/json;charset=utf8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiIsImZpbGUiOiJpbmRleC5qcyIsInNvdXJjZXNDb250ZW50IjpbXX0=

0
dist/install.d.ts vendored Normal file
View File

3
dist/install.js vendored Normal file
View File

@ -0,0 +1,3 @@
//# sourceMappingURL=data:application/json;charset=utf8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiIsImZpbGUiOiJpbnN0YWxsLmpzIiwic291cmNlc0NvbnRlbnQiOltdfQ==

View File

@ -1,7 +1,7 @@
{ {
"name": "cert", "name": "cert",
"version": "0.0.1", "version": "0.0.4",
"description": "automatic cert generation for coreos clusters", "description": "Easily obain SSL certificates from LetsEncrypt. Supports DNS-01 challenge. TypeScript ready.",
"main": "dist/index.js", "main": "dist/index.js",
"scripts": { "scripts": {
"test": "(npmts)" "test": "(npmts)"
@ -24,5 +24,8 @@
"homepage": "https://github.com/pushrocks/cert#readme", "homepage": "https://github.com/pushrocks/cert#readme",
"dependencies": { "dependencies": {
"letsencrypt": "^1.4.4" "letsencrypt": "^1.4.4"
},
"devDependencies": {
"npmts-g": "^5.2.6"
} }
} }