2017-04-30 18:22:34 +02:00
|
|
|
"use strict";
|
2016-06-10 06:14:12 +02:00
|
|
|
/* ================================================== *
|
2016-10-02 20:35:13 +02:00
|
|
|
**** NPMTS ****
|
|
|
|
Fabulous TypeScript development
|
2016-06-10 06:14:12 +02:00
|
|
|
* ================================================== */
|
2017-02-27 22:19:14 +01:00
|
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
2016-09-22 23:23:16 +02:00
|
|
|
const early = require("early");
|
2016-09-06 17:21:25 +02:00
|
|
|
early.start('NPMTS');
|
2016-09-22 23:23:16 +02:00
|
|
|
const plugins = require("./npmts.plugins");
|
2016-10-06 21:03:30 +02:00
|
|
|
const cli = require("./npmts.cli");
|
2016-06-12 00:45:33 +02:00
|
|
|
early.stop()
|
2016-09-22 23:23:16 +02:00
|
|
|
.then(() => {
|
2016-10-06 21:03:30 +02:00
|
|
|
let loaded = plugins; // to make sure plugins get actually loaded
|
|
|
|
cli.run();
|
2016-06-10 06:14:12 +02:00
|
|
|
});
|