|
|
@@ -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('..')
|
|
|
})
|