2016-10-21 15:48:52 +00:00
|
|
|
/* ------------------------------------------
|
|
|
|
* This module creates TypeScript documentation
|
|
|
|
* -------------------------------------------- */
|
2018-04-08 23:03:39 +00:00
|
|
|
import * as q from 'smartq';
|
2016-10-02 18:35:13 +00:00
|
|
|
|
2018-04-08 23:03:39 +00:00
|
|
|
import * as paths from '../npmts.paths';
|
|
|
|
import { INpmtsConfig } from '../npmts.config';
|
2016-10-21 15:48:52 +00:00
|
|
|
|
2018-04-08 23:03:39 +00:00
|
|
|
import * as plugins from './mod.plugins';
|
2016-10-21 15:48:52 +00:00
|
|
|
|
2018-04-08 23:03:39 +00:00
|
|
|
export let run = function(configArg: INpmtsConfig) {
|
|
|
|
let done = q.defer<INpmtsConfig>();
|
|
|
|
done.resolve(configArg);
|
|
|
|
return done.promise;
|
|
|
|
};
|