2016-06-10 04:14:12 +00:00
|
|
|
/* ================================================== *
|
2016-10-02 18:35:13 +00:00
|
|
|
**** NPMTS ****
|
|
|
|
Fabulous TypeScript development
|
2016-06-10 04:14:12 +00:00
|
|
|
* ================================================== */
|
2016-10-02 18:35:13 +00:00
|
|
|
|
2018-04-08 23:03:39 +00:00
|
|
|
import * as early from 'early';
|
|
|
|
early.start('NPMTS');
|
|
|
|
import * as plugins from './npmts.plugins';
|
|
|
|
import * as cli from './npmts.cli';
|
|
|
|
early.stop().then(() => {
|
|
|
|
let loaded = plugins; // to make sure plugins get actually loaded
|
|
|
|
cli.run();
|
|
|
|
});
|