8 líneas
117 B
Bash
Archivo Ejecutable
8 líneas
117 B
Bash
Archivo Ejecutable
#!/bin/sh
|
|
|
|
# Change directory to repo root.
|
|
cd "$(dirname "$0")" || exit
|
|
echo "Watching $(pwd)"
|
|
# From /
|
|
tsc --watch
|