mirror of
https://github.com/Eugeny/tabby.git
synced 2025-07-19 18:07:58 +00:00
.
This commit is contained in:
14
scripts/install-deps.js
Normal file
14
scripts/install-deps.js
Normal file
@@ -0,0 +1,14 @@
|
||||
#!/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('..')
|
||||
})
|
Reference in New Issue
Block a user