run yarn start and yarn dev:wds in one command
Created by: berkin
Using a module like npm-run-all, it is possible to run multiple npm-scripts in parallel. Also it supports wildcard, the below script can be run as "npm-run-all -p dev:*"
{
"start": "npm-run-all -p dev:start dev:wds
}