fix(core): update

This commit is contained in:
Philipp Kunz 2020-11-27 12:55:23 +00:00
parent 9021e9ae39
commit 6c13622b33

View File

@ -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();
};