tsdocker/ts/index.ts

13 lines
361 B
TypeScript
Raw Normal View History

2016-07-18 18:48:34 +00:00
import * as plugins from "./npmdocker.plugins";
2016-07-18 22:37:13 +00:00
import * as promisechain from "./npmdocker.promisechain";
2016-07-19 17:21:06 +00:00
import * as ConfigModule from "./npmdocker.config";
2016-07-18 18:48:34 +00:00
2016-07-19 17:21:06 +00:00
promisechain.run()
.then((configArg:ConfigModule.IConfig) => {
if(configArg.exitCode == 0){
plugins.beautylog.success("Allright test in docker ran through");
}
});
2016-07-18 18:48:34 +00:00