tscoverage/ts/mod00/index.ts

28 lines
876 B
TypeScript
Raw Normal View History

2016-10-21 15:48:52 +00:00
/* ------------------------------------------
* This module compiles TypeScript files
* -------------------------------------------- */
2017-01-17 23:58:09 +00:00
import * as q from 'smartq'
2016-10-21 15:48:52 +00:00
import { npmtsOra } from '../npmts.log'
import { INpmtsConfig } from '../npmts.config'
import * as plugins from './mod00.plugins'
import * as NpmtsAssets from './mod00.assets'
import * as NpmtsCheck from './mod00.check'
import * as NpmtsClean from './mod00.clean'
import * as NpmtsCompile from './mod00.compile'
2017-01-17 23:58:09 +00:00
export let run = function(configArg: INpmtsConfig): Promise<INpmtsConfig> {
2016-10-21 15:48:52 +00:00
let done = q.defer<INpmtsConfig>()
npmtsOra.text('starting TypeScript Compilation')
NpmtsClean.run(configArg)
.then(NpmtsCheck.run)
.then(NpmtsCompile.run)
.then(NpmtsAssets.run)
.then(function(){
done.resolve(configArg)
})
return done.promise
}