From aa766097b71ba6c152eabb7789eee882990f9e25 Mon Sep 17 00:00:00 2001 From: mikaello <2505178+mikaello@users.noreply.github.com> Date: Fri, 20 Oct 2023 05:30:56 +0000 Subject: [PATCH] fix(docs): typedoc does no longer support plugin=none Since v0.24.0 this is the case, see https://github.com/TypeStrong/typedoc/issues/1598#issuecomment-1772105659 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 021174a..c295f4c 100644 --- a/package.json +++ b/package.json @@ -6,7 +6,7 @@ "types": "dist/index.d.ts", "scripts": { "generate-docs": "typedoc --readme none --plugin typedoc-plugin-markdown --disableSources --excludePrivate false --out docs src", - "generate-html-docs": "typedoc --readme none --plugin none --out html src", + "generate-html-docs": "typedoc --readme none --out html src", "prepare": "npm run build && cp export.flow.js dist/index.flow.js", "build": "tsc", "start": "tsc --watch",