This commit is contained in:
Eugene Pankov
2017-06-24 15:49:32 +02:00
parent 126bc555e3
commit aaad210901
3 changed files with 5 additions and 6 deletions

View File

@@ -6,10 +6,12 @@ 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('..')
@@ -17,6 +19,7 @@ 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('..')
})