2016-10-21 15:48:52 +00:00
|
|
|
/* ------------------------------------------
|
|
|
|
* This module creates TypeScript documentation
|
|
|
|
* -------------------------------------------- */
|
2017-01-17 23:58:09 +00:00
|
|
|
import * as q from 'smartq'
|
2016-10-02 18:35:13 +00:00
|
|
|
|
2016-10-21 15:48:52 +00:00
|
|
|
import * as paths from '../npmts.paths'
|
|
|
|
import { INpmtsConfig } from '../npmts.config'
|
|
|
|
|
|
|
|
import * as plugins from './mod01.plugins'
|
|
|
|
|
|
|
|
export let run = function (configArg: INpmtsConfig) {
|
|
|
|
let done = q.defer<INpmtsConfig>()
|
2017-01-15 13:32:28 +00:00
|
|
|
done.resolve(configArg)
|
2016-09-06 15:21:25 +00:00
|
|
|
return done.promise
|
|
|
|
}
|