This commit is contained in:
Phil Kunz 2016-07-13 23:17:24 +02:00
commit 3c5c73246a
6 changed files with 65 additions and 0 deletions

4
.gitignore vendored Normal file
View File

@ -0,0 +1,4 @@
node_modules/
coverage/
docs/
.nogit/

35
.gitlab-ci.yml Normal file
View File

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

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

1
dist/index.js vendored Normal file
View File

@ -0,0 +1 @@
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi90cy9pbmRleC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiIn0=

25
package.json Normal file
View File

@ -0,0 +1,25 @@
{
"name": "npmdocker",
"version": "1.0.0",
"description": "develop modules cross platform by using docker",
"main": "dist/index.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "(npmts)"
},
"repository": {
"type": "git",
"url": "git+ssh://git@gitlab.com/pushrocks/npmdocker.git"
},
"keywords": [
"docker"
],
"author": "Lossless GmbH",
"license": "MIT",
"bugs": {
"url": "https://gitlab.com/pushrocks/npmdocker/issues"
},
"homepage": "https://gitlab.com/pushrocks/npmdocker#README"
}

0
ts/index.ts Normal file
View File