18 lines
517 B
TypeScript
18 lines
517 B
TypeScript
import * as q from 'smartq'
|
|
|
|
import * as paths from '../npmts.paths'
|
|
|
|
import * as plugins from './mod00.plugins'
|
|
|
|
export let run = function (configArg) {
|
|
let done = q.defer()
|
|
let config = configArg
|
|
plugins.beautylog.ora.text('now compiling ' + 'TypeScript')
|
|
plugins.tsn.compileGlobStringObject(config.ts, config.tsOptions, paths.cwd)
|
|
.then(() => {
|
|
plugins.beautylog.ok(`compiled the module's TypeScript!`)
|
|
done.resolve(config)
|
|
}).catch(err => { console.log(err) })
|
|
return done.promise
|
|
}
|