Allow for non-fullscreen "react-scripts start" server
Created by: sheerun
I use concurrently to run graphql server along development server, like so:
concurrently -k 'babel-watch graphql/server.js' 'react-scripts start'
Unfortunately react-scripts
start takes whole terminal screen, and the output of babel-watch is missing.. Is it possible to run react-script start
in non-fullscreen mode (output line-by-line)?