UNPKG

@codercy1995/cy-cli

Version:

11 lines (9 loc) 318 B
const path = require('path'); const execa = require('execa'); module.exports = function () { let execPath = path.join(__dirname, '../scripts/build.js'); const childProcess = execa('node', [execPath]); childProcess.stdout.on('data', (buffer) => { process.stdout.write(buffer); }); };