tscoverage/ts/index.ts

15 lines
417 B
TypeScript
Raw Normal View History

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()
2017-08-16 17:13:01 +00:00
.then(() => {
let loaded = plugins // to make sure plugins get actually loaded
cli.run()
})