1
1
mirror of https://github.com/Eugeny/tabby.git synced 2024-09-20 09:27:16 +03:00
tabby/scripts/install-deps.js
2017-07-15 18:16:27 +02:00

23 lines
434 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 prune')
sh.exec('yarn install')
sh.cd('app')
sh.exec('yarn prune')
sh.exec('yarn install')
sh.cd('..')
vars.builtinPlugins.forEach(plugin => {
log.info('deps', plugin)
sh.cd(plugin)
sh.exec('yarn prune')
sh.exec('yarn install')
sh.cd('..')
})