This commit is contained in:
Eugene Pankov
2017-06-24 14:14:57 +02:00
parent b5486b2ac9
commit fa6f968e87
8 changed files with 22 additions and 14 deletions

View File

@@ -6,17 +6,17 @@ const log = require('npmlog')
log.info('deps', 'app')
sh.exec('npm prune')
sh.exec('npm install')
sh.exec('npm update --dev')
sh.cd('app')
sh.exec('npm prune')
sh.exec('npm install')
sh.exec('npm update --dev')
sh.cd('..')
vars.builtinPlugins.forEach(plugin => {
log.info('deps', plugin)
sh.cd(plugin)
sh.exec('npm prune')
sh.exec('npm install')
sh.exec('npm update --dev')
sh.cd('..')
})