mirror of
https://github.com/Eugeny/tabby.git
synced 2024-11-24 06:04:04 +03:00
15 lines
277 B
JavaScript
Executable File
15 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('..')
|
|
})
|