9 lines
87 B
Bash
9 lines
87 B
Bash
|
#!/bin/sh
|
||
|
set -ex
|
||
|
|
||
|
# npm run dev
|
||
|
|
||
|
# npm run start
|
||
|
|
||
|
|
||
|
while true; do sleep infinity; done
|