1
1
mirror of https://github.com/Eugeny/tabby.git synced 2024-09-20 09:27:16 +03:00
tabby/scripts/vars.js

20 lines
731 B
JavaScript
Raw Normal View History

2017-05-01 21:12:39 +03:00
const path = require('path')
const fs = require('fs')
2017-06-26 22:54:36 +03:00
const childProcess = require('child_process')
2017-05-01 21:12:39 +03:00
const appInfo = JSON.parse(fs.readFileSync(path.resolve(__dirname, '../app/package.json')))
const pkgInfo = JSON.parse(fs.readFileSync(path.resolve(__dirname, '../package.json')))
2017-06-26 22:54:36 +03:00
exports.version = childProcess.execSync('git describe --tags', {encoding:'utf-8'})
exports.version = exports.version.substring(1, exports.version.length - 1)
2017-05-01 21:12:39 +03:00
exports.builtinPlugins = [
'terminus-core',
'terminus-settings',
'terminus-terminal',
'terminus-community-color-schemes',
2017-06-04 19:58:00 +03:00
'terminus-plugin-manager',
2017-05-01 21:12:39 +03:00
]
2017-11-19 00:41:13 +03:00
exports.nativeModules = ['node-pty-tmp', 'font-manager', 'xkeychain']
2017-05-01 21:12:39 +03:00
exports.electronVersion = pkgInfo.devDependencies.electron