import * as childProcess from 'child_process'; export const spawn = ( cwd: string, command: string, args: string[], ) => childProcess.spawn(command, args, { cwd });