Files
atom/script/lib/install-script-dependencies.js
Wliu 7bb08e39f3 👕
2017-01-24 23:41:30 -05:00

15 lines
328 B
JavaScript

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