7 lines
169 B
Bash
7 lines
169 B
Bash
#!/bin/bash
|
|
|
|
# Start nodemon
|
|
nodemon --watch src --watch vendors -e ts,js,scss --exec npm run build &
|
|
|
|
# Start lite-server
|
|
lite-server -c configs/lite-server-config.json |