summaryrefslogtreecommitdiff
path: root/StoneIsland/plugins/cordova-plugin-app-name/scripts/npm-install.js
blob: 710905cfd95b38e07dfe60b98e8da1349e8e2f77 (plain)
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
    });
};