1 2 3 4 5 6 7 8
var exec = require('child_process').execSync; module.exports = function(context) { exec('npm install', { cwd: context.opts.plugin.pluginInfo.dir }); };