UNPKG

@quasar/app

Version:

Quasar Framework local CLI

63 lines (52 loc) 1.34 kB
const logger = require('./logger') const log = logger('app:spawn') const warn = logger('app:spawn', 'red') const crossSpawn = require('cross-spawn') /* Returns pid, takes onClose */ module.exports.spawn = function (cmd, params, opts, onClose) { if (!cmd) { warn(`⚠️ Command name was not available. Please run again.`) process.exit(1) } log(`Running "${cmd} ${params.join(' ')}"`) log() const runner = crossSpawn( cmd, params, { stdio: 'inherit', stdout: 'inherit', stderr: 'inherit', ...opts } ) runner.on('close', code => { log() if (code) { log(`Command "${cmd}" failed with exit code: ${code}`) } onClose && onClose(code) }) if (opts.detach === true) { runner.unref() } return runner.pid } /* Returns nothing, takes onFail */ module.exports.spawnSync = function (cmd, params, opts, onFail) { log(`[sync] Running "${cmd} ${params.join(' ')}"`) log() const runner = crossSpawn.sync( cmd, params, { stdio: 'inherit', stdout: 'inherit', stderr: 'inherit', ...opts } ) if (runner.status || runner.error) { warn() warn(`⚠️ Command "${cmd}" failed with exit code: ${runner.status}`) if (runner.status === null) { warn(`⚠️ Please globally install "${cmd}"`) } onFail && onFail() process.exit(1) } }