start dockersock class and update gitlab-ci.yml

This commit is contained in:
Philipp Kunz 2016-06-14 09:26:54 +02:00
parent c91dc1e9e2
commit 95608704e4
2 changed files with 13 additions and 0 deletions

View File

@ -32,6 +32,7 @@ test:
- priv
release:
image: hosttoday/ht-docker-node:npmts
stage: release
script:
- npmci publish npm

View File

@ -0,0 +1,12 @@
import "typings-global"
import * as plugins from "./dockersock.plugins";
export class dockersock {
sockPath:string;
constructor(pathArg:string){
this.sockPath = pathArg;
}
request(){
}
}