diff --git a/ts/index.ts b/ts/index.ts index 2e427a8..c2be5fa 100644 --- a/ts/index.ts +++ b/ts/index.ts @@ -3,4 +3,7 @@ early.start('tsdoc'); import * as plugins from './tsdoc.plugins'; import * as cli from './tsdoc.cli'; early.stop(); -cli.run(); + +export const runCli = async () => { + await cli.run(); +};