tridactyl.tridactyl/scripts/make_docs.sh
2026-07-19 18:13:44 +02:00

11 lines
312 B
Bash
Executable file

#!/bin/sh
set -e
dest=generated/static/docs
"$(yarn bin)/typedoc" --plugin ./scripts/typedoc-theme.js --theme tridactyl \
--entryPointStrategy expand --validation.notExported false \
--exclude "src/**/?(test_utils|*.test).ts" \
--out "$dest" src
rm -rf build/static/docs
cp -r "$dest" build/static/