11 lines
100 B
Bash
Executable File
11 lines
100 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
yarn build
|
|
|
|
while true; do
|
|
yarn start
|
|
|
|
echo "restarting..."
|
|
sleep 1
|
|
done
|