This commit is contained in:
Eugene Pankov
2017-06-24 15:15:45 +02:00
parent 3ada9b703f
commit bf3882b557
4 changed files with 15 additions and 5 deletions

11
scripts/build-plugins.js Executable file
View File

@@ -0,0 +1,11 @@
#!/usr/bin/env node
const sh = require('shelljs')
const vars = require('./vars')
const log = require('npmlog')
vars.builtinPlugins.forEach(plugin => {
log.info('build', plugin)
sh.cd(plugin)
sh.exec(`npm run build`)
sh.cd('..')
})

View File

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