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
|
|
|
* ================================================== */
|
2016-10-02 20:35:13 +02:00
|
|
|
|
2016-09-06 17:21:25 +02:00
|
|
|
import * as early from 'early'
|
|
|
|
early.start('NPMTS')
|
|
|
|
import * as plugins from './npmts.plugins'
|
2016-10-06 21:03:30 +02:00
|
|
|
import * as cli from './npmts.cli'
|
2016-06-12 00:45:33 +02:00
|
|
|
early.stop()
|
2016-06-16 03:02:33 +02:00
|
|
|
.then(() => {
|
2016-10-06 21:03:30 +02:00
|
|
|
let loaded = plugins // to make sure plugins get actually loaded
|
|
|
|
cli.run()
|
2016-09-06 17:21:25 +02:00
|
|
|
})
|