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