From 6c13622b33f8f219dd8041ce1bd8f41444d00abf Mon Sep 17 00:00:00 2001 From: Phil Kunz Date: Fri, 27 Nov 2020 12:55:23 +0000 Subject: [PATCH] fix(core): update --- ts/index.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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(); +};