From 6c3ef3422f73f8d983b82c749959abd06b512e6f Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=B4me=20Benoit?= Date: Thu, 10 Aug 2023 00:49:01 +0200 Subject: [PATCH] fix: fix markdown documentation removal at typedoc generation MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Jérôme Benoit --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 3e3d217f..ae059f63 100644 --- a/package.json +++ b/package.json @@ -31,7 +31,7 @@ "lint:fix": "eslint . --cache --fix", "lint:report": "eslint . --cache --format json --output-file reports/eslint.json", "release": "release-it", - "typedoc": "typedoc", + "typedoc": "mkdir ./tmp && cp ./docs/*.md ./tmp && typedoc && cp ./tmp/*.md ./docs && rm -rf ./tmp", "prepublishOnly": "pnpm build:prod" }, "ts-standard": { -- 2.34.1