12 lines
164 B
Text
Executable file
12 lines
164 B
Text
Executable file
# Stop on errors
|
|
set -e
|
|
|
|
#cd "$(dirname "$0")/.."
|
|
|
|
#rm -rf dist
|
|
|
|
# Quit all background tasks when script exits
|
|
trap "kill 0" EXIT
|
|
|
|
npm exec -- serve -p 5004 &
|
|
wait
|