2017-04-30 22:01:12 +00:00
|
|
|
#!/usr/bin/env node
|
2023-02-26 19:42:31 +00:00
|
|
|
import { rebuild } from 'electron-rebuild'
|
|
|
|
import sh from 'shelljs'
|
|
|
|
import path from 'node:path'
|
|
|
|
import fs from 'node:fs'
|
|
|
|
import * as vars from './vars.mjs'
|
|
|
|
import log from 'npmlog'
|
|
|
|
|
|
|
|
import * as url from 'url'
|
|
|
|
const __dirname = url.fileURLToPath(new URL('.', import.meta.url))
|
|
|
|
|
2017-04-30 22:01:12 +00:00
|
|
|
|
|
|
|
let target = path.resolve(__dirname, '../builtin-plugins')
|
|
|
|
sh.mkdir('-p', target)
|
|
|
|
fs.writeFileSync(path.join(target, 'package.json'), '{}')
|
|
|
|
sh.cd(target)
|
|
|
|
vars.builtinPlugins.forEach(plugin => {
|
2022-01-16 18:41:01 +00:00
|
|
|
if (plugin === 'tabby-web') {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
log.info('install', plugin)
|
|
|
|
sh.cp('-r', path.join('..', plugin), '.')
|
|
|
|
sh.rm('-rf', path.join(plugin, 'node_modules'))
|
|
|
|
sh.cd(plugin)
|
|
|
|
sh.exec(`yarn install --force --production`, { fatal: true })
|
2020-12-24 13:03:14 +00:00
|
|
|
|
2020-12-23 20:45:47 +00:00
|
|
|
|
2022-01-16 18:41:01 +00:00
|
|
|
log.info('rebuild', 'native')
|
|
|
|
if (fs.existsSync('node_modules')) {
|
|
|
|
rebuild({
|
|
|
|
buildPath: path.resolve('.'),
|
|
|
|
electronVersion: vars.electronVersion,
|
|
|
|
arch: process.env.ARCH ?? process.arch,
|
|
|
|
force: true,
|
2022-10-26 07:45:12 +00:00
|
|
|
useCache: false,
|
2022-01-16 18:41:01 +00:00
|
|
|
})
|
|
|
|
}
|
|
|
|
sh.cd('..')
|
2017-04-30 22:01:12 +00:00
|
|
|
})
|
2017-06-30 22:54:55 +00:00
|
|
|
fs.unlinkSync(path.join(target, 'package.json'), '{}')
|