tscoverage/ts/index.ts

14 lines
286 B
TypeScript
Raw Normal View History

2016-05-19 20:11:18 +00:00
/// <reference path="./typings/index.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);
}