mathjs
Version:
Math.js is an extensive math library for JavaScript and Node.js. It features a flexible expression parser with support for symbolic computation, comes with a large set of built-in functions and constants, and offers an integrated solution to work with dif
14 lines (11 loc) • 324 B
JavaScript
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;