fix(aidoc): Bump dependencies, add pnpm workspace config, and add AiDoc.stop()

This commit is contained in:
2025-08-16 11:20:39 +00:00
parent 8561940b8c
commit 2405fb3370
6 changed files with 2584 additions and 1107 deletions

View File

@@ -3,6 +3,6 @@
*/
export const commitinfo = {
name: '@git.zone/tsdoc',
version: '1.5.0',
version: '1.5.1',
description: 'A comprehensive TypeScript documentation tool that leverages AI to generate and enhance project documentation, including dynamic README creation, API docs via TypeDoc, and smart commit message generation.'
}

View File

@@ -75,6 +75,10 @@ export class AiDoc {
await this.openaiInstance.start();
}
public async stop() {
await this.openaiInstance.stop();
}
public async buildReadme(projectDirArg: string) {
const readmeInstance = new aiDocsClasses.Readme(this, projectDirArg);
return await readmeInstance.build();