mirror of https://github.com/OpenVidu/openvidu.git
19 lines
714 B
Bash
Executable File
19 lines
714 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [[ -z "$BASEHREF_VERSION" ]]; then
|
|
echo "Example of use: \"BASEHREF_VERSION=2.12.0 ${0}\"" 1>&2
|
|
exit 1
|
|
fi
|
|
|
|
# Replace version from "stable" to the specified one in all TypeDoc links
|
|
grep -rl '/en/stable/' src | xargs sed -i -e 's|/en/stable/|/en/'${BASEHREF_VERSION}'/|g'
|
|
|
|
# Generate TypeDoc
|
|
./node_modules/typedoc/bin/typedoc --tsconfig ./config/tsconfig.json
|
|
|
|
# Return links to "stable" version
|
|
grep -rl '/en/'${BASEHREF_VERSION}'/' src | xargs sed -i -e 's|/en/'${BASEHREF_VERSION}'/|/en/stable/|g'
|
|
|
|
# Clean previous docs from openvidu.io-docs repo and copy new ones
|
|
rm -rf ../../openvidu.io-docs/docs/api/openvidu-browser/*
|
|
cp -R ./docs/. ../../openvidu.io-docs/docs/api/openvidu-browser |