7 lines
220 B
Bash
Executable file
7 lines
220 B
Bash
Executable file
#!/bin/sh
|
|
|
|
set -eu
|
|
|
|
NODE_ENV=test npm run concurrently -- -k \
|
|
"cd client && npm run webpack -- --config webpack/webpack.video-embed.js --mode development --watch" \
|
|
"npm run build:server && NODE_ENV=test npm start"
|