From 1615ec6bd67efc6bd4ad541e5a52502a7e25dc4e Mon Sep 17 00:00:00 2001 From: evilsprut Date: Mon, 24 Jul 2023 16:14:07 +0300 Subject: [PATCH] api docs in separate folder --- .gitignore | 1 + .vitepress/config.ts | 8 -------- package.json | 4 +--- tsconfig.typedoc.json | 2 +- 4 files changed, 3 insertions(+), 12 deletions(-) diff --git a/.gitignore b/.gitignore index 53110f4..bed683f 100644 --- a/.gitignore +++ b/.gitignore @@ -20,4 +20,5 @@ dist # docs .vitepress/cache +docs-api diff --git a/.vitepress/config.ts b/.vitepress/config.ts index 2c770f9..a253211 100644 --- a/.vitepress/config.ts +++ b/.vitepress/config.ts @@ -1,18 +1,10 @@ import { defineConfig } from 'vitepress' -import { typedocPlugin } from 'vuepress-plugin-typedoc/next'; // https://vitepress.dev/reference/site-config export default defineConfig({ title: "NestJS Telegraf", description: "NestJS Telegraf documentation", srcDir: './docs', - plugins: [ - typedocPlugin({ - // plugin options - entryPoints: ['../src/index.ts'], - tsconfig: '../tsconfig.typedoc.json', - }), - ], themeConfig: { // https://vitepress.dev/reference/default-theme-config nav: [ diff --git a/package.json b/package.json index 56947a0..cee0d2c 100644 --- a/package.json +++ b/package.json @@ -72,10 +72,8 @@ "reflect-metadata": "0.1.13", "telegraf": "4.12.2", "typedoc": "0.24.8", - "typedoc-plugin-markdown": "^3.15.3", "typescript": "4.8.2", - "vitepress": "^1.0.0-beta.6", - "vuepress-plugin-typedoc": "^0.12.1" + "vitepress": "^1.0.0-beta.6" }, "peerDependencies": { "@nestjs/common": "^9.0.0 || ^10.0.0", diff --git a/tsconfig.typedoc.json b/tsconfig.typedoc.json index 697b56d..296f3c1 100644 --- a/tsconfig.typedoc.json +++ b/tsconfig.typedoc.json @@ -5,6 +5,6 @@ }, "typedocOptions": { "entryPoints": ["./index.ts", "./lib"], - "out": "docs" + "out": "docs-api" } }