'use strict'; const childProcess = require('child_process'); const CONFIG = require('../config'); module.exports = function(ci) { console.log('Installing script dependencies'); childProcess.execFileSync( CONFIG.getNpmBinPath(ci), ['--loglevel=error', ci ? 'ci' : 'install'], { env: process.env, cwd: CONFIG.scriptRootPath } ); };