mirror of
https://github.com/tridactyl/tridactyl.git
synced 2026-09-10 07:16:33 -04:00
11 lines
312 B
Bash
Executable file
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/
|