refactor
This commit is contained in:
15
ts/mod_docs/index.ts
Normal file
15
ts/mod_docs/index.ts
Normal file
@ -0,0 +1,15 @@
|
||||
/* ------------------------------------------
|
||||
* This module creates TypeScript documentation
|
||||
* -------------------------------------------- */
|
||||
import * as q from 'smartq'
|
||||
|
||||
import * as paths from '../npmts.paths'
|
||||
import { INpmtsConfig } from '../npmts.config'
|
||||
|
||||
import * as plugins from './mod.plugins'
|
||||
|
||||
export let run = function (configArg: INpmtsConfig) {
|
||||
let done = q.defer<INpmtsConfig>()
|
||||
done.resolve(configArg)
|
||||
return done.promise
|
||||
}
|
2
ts/mod_docs/mod.plugins.ts
Normal file
2
ts/mod_docs/mod.plugins.ts
Normal file
@ -0,0 +1,2 @@
|
||||
export * from '../npmts.plugins'
|
||||
|
Reference in New Issue
Block a user