UNPKG

jointjs

Version:

JavaScript diagramming library

14 lines (11 loc) 324 B
const execa = require('execa'); const utils = require('./index'); async function runCommand(command, args = []) { try { await execa(command, args, { stdio: 'inherit', shell: true }); } catch (error) { utils.logger.error(error.message); process.exit(2); } } module.exports = runCommand;