5 lines
128 B
Bash
Executable file
5 lines
128 B
Bash
Executable file
#!/usr/bin/env bash
|
|
cd web > /dev/null
|
|
if [[ -f "./node_modules/.bin/tsc" ]]; then
|
|
./node_modules/.bin/tsc --build --noEmit
|
|
fi
|