UNPKG

170 Bapplication/x-shView Raw
1#!/bin/bash
2
3#--traceResolution
4
5cmd="./node_modules/typescript/bin/tsc --outDir dist/&&./cp_css.sh"
6
7if [ $1 ]; then
8 ./watch.sh src/ $cmd
9else
10 eval $cmd
11fi
12
13exit $?;
14