mirror of
https://github.com/Eugeny/tabby
synced 2024-11-15 17:28:06 +00:00
19 lines
366 B
JavaScript
Executable file
19 lines
366 B
JavaScript
Executable file
#!/usr/bin/env node
|
|
const sh = require('shelljs')
|
|
const path = require('path')
|
|
const vars = require('./vars')
|
|
const log = require('npmlog')
|
|
|
|
log.info('deps', 'app')
|
|
sh.exec('yarn install')
|
|
|
|
sh.cd('app')
|
|
sh.exec('yarn install')
|
|
sh.cd('..')
|
|
|
|
vars.builtinPlugins.forEach(plugin => {
|
|
log.info('deps', plugin)
|
|
sh.cd(plugin)
|
|
sh.exec('yarn install')
|
|
sh.cd('..')
|
|
})
|