From 365e95bee0b7a0e21917ff84bd646cf1061a717a Mon Sep 17 00:00:00 2001 From: TESTELIN Geoffrey Date: Wed, 4 Aug 2021 23:37:17 +0200 Subject: [PATCH] fix(release): fix an issue with the website storybook step --- angular.json | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/angular.json b/angular.json index 5bc90121..c5982c22 100644 --- a/angular.json +++ b/angular.json @@ -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 } }, @@ -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": { @@ -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" } } }