Skip to content

Commit

Permalink
fix(release): fix an issue with the website storybook step
Browse files Browse the repository at this point in the history
  • Loading branch information
C0ZEN committed Aug 4, 2021
1 parent e93f3fc commit 365e95b
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@
"build-storybook-with-docs-gh-pages": {
"builder": "@nrwl/workspace:run-commands",
"options": {
"commands": ["npx nx run website:compodoc", "npx nx run website:build-storybook"],
"commands": ["npx nx run website:compodoc:json", "npx nx run website:build-storybook"],
"parallel": false
}
},
Expand All @@ -179,10 +179,9 @@
"options": {
"tsConfig": "apps/website/tsconfig.editor.json",
"outputPath": "dist/compodoc/website",
"disableCoverage": false,
"disableCoverage": true,
"disablePrivate": false,
"disableInternal": false,
"unitTestCoverage": "coverage/apps/website/coverage-summary.json"
"disableInternal": false
},
"configurations": {
"json": {
Expand All @@ -201,8 +200,10 @@
"outputPath": "gh-pages/compodoc",
"baseHref": "compodoc",
"exportFormat": "html",
"disableCoverage": false,
"disablePrivate": true,
"disableInternal": true
"disableInternal": true,
"unitTestCoverage": "coverage/apps/website/coverage-summary.json"
}
}
}
Expand Down

0 comments on commit 365e95b

Please sign in to comment.