mirror of
https://github.com/Eugeny/tabby.git
synced 2024-11-11 07:28:08 +03:00
30 lines
647 B
JavaScript
Executable File
30 lines
647 B
JavaScript
Executable File
#!/usr/bin/env node
|
|
const sh = require('shelljs')
|
|
const path = require('path')
|
|
const vars = require('./vars')
|
|
const log = require('npmlog')
|
|
|
|
const localBinPath = path.resolve(__dirname, '../node_modules/.bin');
|
|
const npx = `${localBinPath}/npx`;
|
|
|
|
log.info('deps', 'app')
|
|
|
|
sh.cd('app')
|
|
sh.exec(`${npx} yarn install --force`)
|
|
sh.cd('..')
|
|
|
|
vars.builtinPlugins.forEach(plugin => {
|
|
log.info('deps', plugin)
|
|
sh.cd(plugin)
|
|
sh.exec(`${npx} yarn install --force`)
|
|
sh.cd('..')
|
|
})
|
|
|
|
if (['darwin', 'linux'].includes(process.platform)) {
|
|
sh.cd('node_modules')
|
|
for (let x of vars.builtinPlugins) {
|
|
sh.ln('-fs', '../' + x, x)
|
|
}
|
|
sh.cd('..')
|
|
}
|