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-11-27 18:30:59 +03:00
|
|
|
'terminus-ssh',
|
2017-05-01 21:12:39 +03:00
|
|
|
]
|
2018-03-23 19:15:11 +03:00
|
|
|
exports.bundledModules = [
|
|
|
|
'@angular',
|
|
|
|
'@ng-bootstrap',
|
|
|
|
]
|
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
|