tabby/scripts/build-plugins.js
Eugene Pankov bf3882b557 .
2017-06-24 15:15:45 +02:00

12 lines
240 B
JavaScript
Executable File

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