fix(core): update
This commit is contained in:
		| @@ -3,6 +3,6 @@ | ||||
|  */ | ||||
| export const commitinfo = { | ||||
|   name: '@git.zone/tsdoc', | ||||
|   version: '1.1.20', | ||||
|   version: '1.1.21', | ||||
|   description: 'An advanced TypeScript documentation tool leveraging AI for enhanced insights and automated documentation generation, with capabilities for automated and enhanced documentation creation tailor-made for TypeScript projects.' | ||||
| } | ||||
|   | ||||
| @@ -30,11 +30,12 @@ export const run = async () => { | ||||
|   tsdocCli.addCommand('aidoc').subscribe(async (argvArg) => { | ||||
|     logger.log('info', `Generating new readme...`); | ||||
|     logger.log('info', `This may take some time...`); | ||||
|     const aidocs = new AiDoc(); | ||||
|     aidocs.buildReadme(paths.cwd); | ||||
|     const aidocInstance = new AiDoc(); | ||||
|     await aidocInstance.start(); | ||||
|     aidocInstance.buildReadme(paths.cwd); | ||||
|     logger.log('info', `Generating new keywords...`); | ||||
|     logger.log('info', `This may take some time...`); | ||||
|     aidocs.buildDescription(paths.cwd); | ||||
|     aidocInstance.buildDescription(paths.cwd); | ||||
|   }) | ||||
|  | ||||
|   tsdocCli.addCommand('test').subscribe((argvArg) => { | ||||
|   | ||||
		Reference in New Issue
	
	Block a user