5 lines
99 B
Bash
Executable file
5 lines
99 B
Bash
Executable file
#!/usr/bin/env sh
|
|
|
|
NODE_ENV=test concurrently -k \
|
|
"npm run watch:client" \
|
|
"tsc && npm start"
|