mirror of
https://github.com/Eugeny/tabby
synced 2024-11-15 01:17:14 +00:00
14 lines
277 B
JavaScript
Executable file
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('..')
|
|
})
|