TeaWeb/tools/build_dtsgen.sh

13 lines
252 B
Bash
Raw Normal View History

2018-12-26 13:17:12 +00:00
#!/usr/bin/env bash
BASEDIR=$(dirname "$0")
source "${BASEDIR}/../scripts/resolve_commands.sh"
cd "$BASEDIR/dtsgen"
execute_tsc -p tsconfig.json
2019-03-19 20:15:15 +00:00
if [[ $? -ne 0 ]]; then
2018-12-26 13:17:12 +00:00
echo "Failed to build typescript declaration generator"
exit 1
fi
exit 0