From d25cc5e4cddc6665de1d09fb927e410f36d39732 Mon Sep 17 00:00:00 2001 From: Rafal Makara Date: Tue, 5 Nov 2019 14:24:15 +0100 Subject: [PATCH] fix: Move disableOutputCheck to config file --- package.json | 2 +- typedoc.js | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 7207faf69..df6fb0ffb 100644 --- a/package.json +++ b/package.json @@ -14,7 +14,7 @@ "test:coverage": "yarn test --coverage", "link-packages": "cd ./packages/shopware-6-client && yarn link && cd ../../", "docs:dev": "vuepress dev docs", - "docs:build": "npx typedoc --options ./typedoc.js --disableOutputCheck && vuepress build docs" + "docs:build": "npx typedoc --options ./typedoc.js && vuepress build docs" }, "gitHooks": { "pre-commit": "lint-staged", diff --git a/typedoc.js b/typedoc.js index 746bed0ab..3a93a7380 100644 --- a/typedoc.js +++ b/typedoc.js @@ -6,5 +6,6 @@ module.exports = { exclude: "**/__tests__/**", mode: "file", excludePrivate: true, - theme: "vuepress" + theme: "vuepress", + disableOutputCheck: true };