2016-10-21 17:48:52 +02:00
|
|
|
/* ------------------------------------------
|
|
|
|
* This module creates TypeScript documentation
|
|
|
|
* -------------------------------------------- */
|
2017-01-18 00:58:09 +01:00
|
|
|
import * as q from 'smartq'
|
2016-10-02 20:35:13 +02:00
|
|
|
|
2016-10-21 17:48:52 +02: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 14:32:28 +01:00
|
|
|
done.resolve(configArg)
|
2016-09-06 17:21:25 +02:00
|
|
|
return done.promise
|
|
|
|
}
|