From 453c9576ea5cd9894bb22c2a43e369ad48a1bae4 Mon Sep 17 00:00:00 2001 From: Carlos Santos <4a.santos@gmail.com> Date: Mon, 21 Nov 2022 12:34:14 +0100 Subject: [PATCH] openvidu-components: Updated build doc script Replaced testapp README by openvidu-angular README with the aim of showing it on the docs. (Compodoc shows the README file which stay on the main path) --- openvidu-components-angular/generate-docs.sh | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/openvidu-components-angular/generate-docs.sh b/openvidu-components-angular/generate-docs.sh index a34aa2aa..d7595372 100755 --- a/openvidu-components-angular/generate-docs.sh +++ b/openvidu-components-angular/generate-docs.sh @@ -8,12 +8,20 @@ fi # Replace version from "stable" to the specified one in all TypeDoc links grep -rl '/en/stable/' projects src | xargs sed -i -e 's|/en/stable/|/en/'${BASEHREF_VERSION}'/|g' +# Replace testapp README by openvidu-angular README +mv README.md README-testapp.md +cp ./projects/openvidu-angular/README.md . + # Generate Compodoc npm run doc:build # Return links to "stable" version grep -rl '/en/'${BASEHREF_VERSION}'/' projects src | xargs sed -i -e 's|/en/'${BASEHREF_VERSION}'/|/en/stable/|g' +# Undo changes with READMEs +rm README.md +mv README-testapp.md README.md + # Clean previous docs from openvidu.io-docs repo and copy new ones npm run doc:clean-copy