8 lines
101 B
Bash
8 lines
101 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
set -eu
|
||
|
|
||
|
npm run concurrently -- -k \
|
||
|
"npm run build:client" \
|
||
|
"npm run build:server"
|