10 lines
140 B
Bash
Executable file
10 lines
140 B
Bash
Executable file
#!/bin/sh
|
|
set -e
|
|
cd "$(dirname "$(realpath "$0")")"
|
|
|
|
nodemon -w ../common -w . -e ts -x '
|
|
while true;
|
|
do
|
|
./main.ts;
|
|
sleep 1s;
|
|
done'
|