7 lines
115 B
Bash
Executable file
7 lines
115 B
Bash
Executable file
#!/bin/sh
|
|
|
|
set -eu
|
|
|
|
NODE_ENV=test npm run concurrently -- -k \
|
|
"npm run watch:client" \
|
|
"npm run watch:server"
|