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

Commit

Permalink
fix: Commit to test on prod
Browse files Browse the repository at this point in the history
  • Loading branch information
rmakara committed Nov 5, 2019
1 parent 8d7c481 commit 3cfdf82
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
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 --out docs/ --theme vuepress --disableOutputCheck --readme README.md && vuepress build docs"
"docs:build": "npx typedoc --options ./typedoc.js --disableOutputCheck && vuepress build docs"
},
"gitHooks": {
"pre-commit": "lint-staged",
Expand Down
10 changes: 10 additions & 0 deletions typedoc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
module.exports = {
out: "./docs/",

readme: "./README.md",
includes: "./",
exclude: "**/__tests__/**",
mode: "file",
excludePrivate: true,
theme: "vuepress"
};

0 comments on commit 3cfdf82

Please sign in to comment.