From 94d0e0e907808e3da599e222c4b271251f199f8e Mon Sep 17 00:00:00 2001 From: ZEROM22 Date: Fri, 13 Dec 2024 16:00:38 +0300 Subject: [PATCH] import typedoc-signature to typedoc-declaration --- packages/typedoc-declaration/lib/main.ts | 2 ++ packages/typedoc-declaration/package.json | 1 + pnpm-lock.yaml | 3 +++ 3 files changed, 6 insertions(+) diff --git a/packages/typedoc-declaration/lib/main.ts b/packages/typedoc-declaration/lib/main.ts index be5f50252..d35cf5edb 100644 --- a/packages/typedoc-declaration/lib/main.ts +++ b/packages/typedoc-declaration/lib/main.ts @@ -1,6 +1,7 @@ import {pipeline} from "node:stream" import {promisify} from "node:util" import type * as L from "@onlyoffice/library-declaration/next.ts" +import {compute} from "@onlyoffice/typedoc-signature" import {Transformer} from "@onlyoffice/typedoc-transformer" import {Transport} from "@onlyoffice/typedoc-transport" import {type JSONOutput as J} from "typedoc" @@ -19,5 +20,6 @@ export async function process(o: J.Reflection): Promise { console.log(`Finish processing ${o.name} #${o.id}`) + compute(tp) return tp.entities } diff --git a/packages/typedoc-declaration/package.json b/packages/typedoc-declaration/package.json index 479c12a8d..1e1893a27 100644 --- a/packages/typedoc-declaration/package.json +++ b/packages/typedoc-declaration/package.json @@ -16,6 +16,7 @@ "dependencies": { "@onlyoffice/console": "workspace:^", "@onlyoffice/library-declaration": "workspace:^", + "@onlyoffice/typedoc-signature": "workspace:^", "@onlyoffice/typedoc-transformer": "workspace:^", "@onlyoffice/typedoc-transport": "workspace:^", "typedoc": "0.26.11", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 519eaa98d..28b5eda2e 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -3798,6 +3798,9 @@ importers: '@onlyoffice/library-declaration': specifier: workspace:^ version: link:../library-declaration + '@onlyoffice/typedoc-signature': + specifier: workspace:^ + version: link:../typedoc-signature '@onlyoffice/typedoc-transformer': specifier: workspace:^ version: link:../typedoc-transformer