1
1
mirror of https://github.com/Eugeny/tabby.git synced 2024-11-24 06:04:04 +03:00
tabby/scripts/install-deps.js

30 lines
647 B
JavaScript
Raw Normal View History

2017-05-01 01:01:12 +03:00
#!/usr/bin/env node
const sh = require('shelljs')
const path = require('path')
const vars = require('./vars')
2017-06-10 01:29:16 +03:00
const log = require('npmlog')
2017-05-01 01:01:12 +03:00
const localBinPath = path.resolve(__dirname, '../node_modules/.bin');
const npx = `${localBinPath}/npx`;
2017-06-10 01:29:16 +03:00
log.info('deps', 'app')
2017-05-01 01:01:12 +03:00
2017-06-21 00:28:58 +03:00
sh.cd('app')
sh.exec(`${npx} yarn install --force`)
2017-06-21 00:28:58 +03:00
sh.cd('..')
2017-05-01 01:01:12 +03:00
vars.builtinPlugins.forEach(plugin => {
2017-06-10 01:29:16 +03:00
log.info('deps', plugin)
2017-05-01 01:01:12 +03:00
sh.cd(plugin)
sh.exec(`${npx} yarn install --force`)
2017-05-01 01:01:12 +03:00
sh.cd('..')
})
2018-03-23 19:15:11 +03:00
if (['darwin', 'linux'].includes(process.platform)) {
sh.cd('node_modules')
for (let x of vars.builtinPlugins) {
sh.ln('-fs', '../' + x, x)
}
sh.cd('..')
}