From 915e9d17644f2229ce42a51fe45f1cb87d692977 Mon Sep 17 00:00:00 2001 From: Grant Gurvis Date: Tue, 12 Mar 2024 15:22:31 -0700 Subject: [PATCH] fix: remove docs-generator from types dev deps --- pnpm-lock.yaml | 3 --- types/package.json | 1 - types/test/check-docs.mts | 3 ++- 3 files changed, 2 insertions(+), 5 deletions(-) diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 7593eb27..fc9c858e 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -393,9 +393,6 @@ importers: '@types/node': specifier: ^20.10.6 version: 20.10.6 - autocomplete-types-docs-generator: - specifier: workspace:^ - version: link:docs-generator cspell: specifier: ^8.3.2 version: 8.3.2 diff --git a/types/package.json b/types/package.json index 42b395aa..bbea24a2 100644 --- a/types/package.json +++ b/types/package.json @@ -18,7 +18,6 @@ "devDependencies": { "@microsoft/tsdoc": "^0.14.2", "@types/node": "^20.10.6", - "autocomplete-types-docs-generator": "workspace:^", "cspell": "^8.3.2", "picocolors": "^1.0.0", "prettier": "^3.1.1", diff --git a/types/test/check-docs.mts b/types/test/check-docs.mts index c9eaa224..18e0d25f 100644 --- a/types/test/check-docs.mts +++ b/types/test/check-docs.mts @@ -3,7 +3,8 @@ import path from "node:path"; import { URL } from "node:url"; import prettier from "prettier"; import pc from "picocolors"; -import { analyze, generate } from "autocomplete-types-docs-generator"; +// eslint-disable-next-line import/no-relative-packages +import { analyze, generate } from "../docs-generator/dist"; const dirname = new URL(".", import.meta.url).pathname; const docsPath = path.resolve(dirname, "..", "index.d.ts");