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");
|
2016-03-23 13:12:58 +00:00
|
|
|
|
|
|
|
try {
|
2016-05-19 16:36:53 +00:00
|
|
|
promisechain();
|
2016-03-23 13:12:58 +00:00
|
|
|
}
|
|
|
|
catch(err){
|
|
|
|
console.log(err);
|
|
|
|
}
|
|
|
|
|