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-02-19 23:53:23 +00:00
|
|
|
import plugins = require("./npmts.plugins");
|
|
|
|
import promisechain = require("./npmts.promisechain");
|
2016-02-11 18:10:01 +00:00
|
|
|
plugins.beautylog.figletSync("NPMTS");
|
2016-03-23 13:12:58 +00:00
|
|
|
|
|
|
|
try {
|
|
|
|
promisechain.run();
|
|
|
|
}
|
|
|
|
catch(err){
|
|
|
|
console.log(err);
|
|
|
|
}
|
|
|
|
|