Skip to content
This repository has been archived by the owner on Oct 31, 2024. It is now read-only.

Commit

Permalink
fix: Move disableOutputCheck to config file
Browse files Browse the repository at this point in the history
  • Loading branch information
rmakara committed Nov 5, 2019
1 parent 3cfdf82 commit d25cc5e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
3 changes: 2 additions & 1 deletion typedoc.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,6 @@ module.exports = {
exclude: "**/__tests__/**",
mode: "file",
excludePrivate: true,
theme: "vuepress"
theme: "vuepress",
disableOutputCheck: true
};

0 comments on commit d25cc5e

Please sign in to comment.