You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
190 B
11 lines
190 B
3 years ago
|
#!/usr/bin/env bash
|
||
|
|
||
|
set -x
|
||
|
set -e
|
||
|
set -u
|
||
|
set -o pipefail
|
||
|
|
||
3 years ago
|
concurrently -n production,development \
|
||
3 years ago
|
"jest --config=./jest.config.js $*" \
|
||
|
"jest --config=./development/jest.config.js $*"
|