TeaWeb/tools/build_dtsgen.sh

13 lines
250 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
if [ $? -ne 0 ]; then
echo "Failed to build typescript declaration generator"
exit 1
fi
exit 0