import shelljs from 'shelljs'; import { npmDirectory } from './dir'; export function shellExec(command: string) { return new Promise((resolve, reject) => { shelljs.exec(command, { async: true, silent: false, cwd: npmDirectory }, code => { if (code === 0) { resolve(0); } else { reject(new Error(`Error occurred while executing command "${command}". Exit code: ${code}`)); } }); }); }