TeaWeb/tools/build_dtsgen.sh

13 lines
252 B
Bash
Raw Normal View History

2018-12-26 14:17:12 +01: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 21:15:15 +01:00
if [[ $? -ne 0 ]]; then
2018-12-26 14:17:12 +01:00
echo "Failed to build typescript declaration generator"
exit 1
fi
exit 0