This commit is contained in:
Eugene Pankov 2017-06-24 14:55:59 +02:00
parent 7d362fb04b
commit 274a57ef4c
2 changed files with 4 additions and 1 deletions

View File

@ -21,7 +21,7 @@
"less-loader": "2.2.3",
"node-abi": "2.0.3",
"node-gyp": "3.4.0",
"node-sass": "4.5.2",
"node-sass": "4.5.3",
"npmlog": "4.1.0",
"pug": "2.0.0-beta11",
"pug-html-loader": "1.0.9",

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