tscoverage/ts/index.ts

14 lines
285 B
TypeScript
Raw Normal View History

2016-01-31 21:24:57 +00:00
/// <reference path="./typings/main.d.ts" />
2016-02-11 18:10:01 +00:00
console.log("**** starting NPMTS ****");
2016-05-19 16:36:53 +00:00
import * as plugins from "./npmts.plugins"
import {promisechain} from "./npmts.promisechain";
2016-02-11 18:10:01 +00:00
plugins.beautylog.figletSync("NPMTS");
try {
2016-05-19 16:36:53 +00:00
promisechain();
}
catch(err){
console.log(err);
}