23 lines
531 B
Bash
Executable File
23 lines
531 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
BASEDIR=$(dirname "$0")
|
|
cd "$BASEDIR"
|
|
source ../scripts/resolve_commands.sh
|
|
|
|
if [ ! -e declarations/imports_shared.d.ts ]; then
|
|
echo "generate the declarations first!"
|
|
echo "Execute: /scripts/build_declarations.sh"
|
|
exit 1
|
|
fi
|
|
|
|
if [ ! -e ../shared/generated/shared.js ]; then
|
|
echo "generate the shared packed file first!"
|
|
echo "Execute: /shared/generate_packed.sh"
|
|
exit 1
|
|
fi
|
|
|
|
execute_tsc -p tsconfig/tsconfig_packed.json
|
|
if [ $? -ne 0 ]; then
|
|
echo "Failed to build file"
|
|
exit 1
|
|
fi |