mirror of
https://github.com/Eugeny/tabby
synced 2024-11-15 01:17:14 +00:00
20 lines
748 B
JavaScript
Executable file
20 lines
748 B
JavaScript
Executable file
const path = require('path')
|
|
const fs = require('fs')
|
|
const childProcess = require('child_process')
|
|
|
|
const appInfo = JSON.parse(fs.readFileSync(path.resolve(__dirname, '../app/package.json')))
|
|
const pkgInfo = JSON.parse(fs.readFileSync(path.resolve(__dirname, '../package.json')))
|
|
|
|
exports.version = childProcess.execSync('git describe --tags', {encoding:'utf-8'})
|
|
exports.version = exports.version.substring(1, exports.version.length - 1)
|
|
|
|
exports.builtinPlugins = [
|
|
'terminus-core',
|
|
'terminus-settings',
|
|
'terminus-terminal',
|
|
'terminus-community-color-schemes',
|
|
'terminus-plugin-manager',
|
|
]
|
|
exports.nativeModules = ['node-pty', 'font-manager']
|
|
exports.version = appInfo.version
|
|
exports.electronVersion = pkgInfo.devDependencies.electron
|