feat(mod_format): Add support for tsconfig.json formatting

This commit is contained in:
2024-10-27 01:51:17 +02:00
parent 74f4cb3034
commit 00f06b48f3
7 changed files with 95 additions and 42 deletions

View File

@ -5,6 +5,12 @@ import * as paths from '../paths.js';
import { logger } from '../gitzone.logging.js';
export const run = async (argvArg: any) => {
if (argvArg.format) {
const formatMod = await import('../mod_format/index.js');
await formatMod.run();
}
logger.log('info', `gathering facts...`);
const aidoc = new plugins.tsdoc.AiDoc();
await aidoc.start();