I have a process that runs a ruby server:
_currentProcess = spawn('rackup', args, {
cwd: options.cwd || process.cwd(),
stdio: 'ignore'//['ignore', process.stdout, 'ignore']
});
But because i have the the watch task after it, i don't want to output BOTH outputs to the same console (rackup and watch task) as it gets confusing. Is it possible to spawn a process in non-headless mode?