2016-01-31 22:24:57 +01:00
|
|
|
/// <reference path="./typings/main.d.ts" />
|
2016-02-11 19:10:01 +01:00
|
|
|
console.log("**** starting NPMTS ****");
|
2016-02-20 00:53:23 +01:00
|
|
|
import plugins = require("./npmts.plugins");
|
|
|
|
import promisechain = require("./npmts.promisechain");
|
2016-02-11 19:10:01 +01:00
|
|
|
plugins.beautylog.figletSync("NPMTS");
|
2016-03-23 14:12:58 +01:00
|
|
|
|
|
|
|
try {
|
|
|
|
promisechain.run();
|
|
|
|
}
|
|
|
|
catch(err){
|
|
|
|
console.log(err);
|
|
|
|
}
|
|
|
|
|