mirror of
https://github.com/eugeny/tabby
synced 2025-12-12 10:45:45 +00:00
12 lines
240 B
JavaScript
Executable File
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('..')
|
|
})
|