From 95608704e40ee2476f11229a4b2ba09129b1dc75 Mon Sep 17 00:00:00 2001 From: Phil Kunz Date: Tue, 14 Jun 2016 09:26:54 +0200 Subject: [PATCH] start dockersock class and update gitlab-ci.yml --- .gitlab-ci.yml | 1 + ts/dockersock.class.dockersock.ts | 12 ++++++++++++ 2 files changed, 13 insertions(+) create mode 100644 ts/dockersock.class.dockersock.ts diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index f86b943..bc15f8b 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -32,6 +32,7 @@ test: - priv release: + image: hosttoday/ht-docker-node:npmts stage: release script: - npmci publish npm diff --git a/ts/dockersock.class.dockersock.ts b/ts/dockersock.class.dockersock.ts new file mode 100644 index 0000000..8c56249 --- /dev/null +++ b/ts/dockersock.class.dockersock.ts @@ -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(){ + + } +} \ No newline at end of file