mirror of
https://github.com/vale981/tridactyl
synced 2025-03-04 09:01:39 -05:00

Tests run with nodejs + jest types, while the web extension code runs with browser + web-ext type roots.
4 lines
196 B
Bash
Executable file
4 lines
196 B
Bash
Executable file
#!/bin/sh
|
|
dest=generated/static/docs
|
|
"$(yarn bin)/typedoc" --theme src/static/typedoc/ --exclude "src/**/?(test_utils|*.test).ts" --out $dest src --ignoreCompilerErrors
|
|
cp -r $dest build/static/
|