tabby/scripts/install-deps.js
Eugene Pankov 889a60ba3b lint
2017-05-01 13:35:26 +02:00

14 lines
277 B
JavaScript
Executable file

#!/usr/bin/env node
const sh = require('shelljs')
const path = require('path')
const vars = require('./vars')
sh.exec('npm prune')
sh.exec('npm install')
vars.builtinPlugins.forEach(plugin => {
sh.cd(plugin)
sh.exec('npm prune')
sh.exec('npm install')
sh.cd('..')
})