2017-05-01 18:12:39 +00:00
|
|
|
const path = require('path')
|
|
|
|
const fs = require('fs')
|
2017-06-26 19:54:36 +00:00
|
|
|
const childProcess = require('child_process')
|
2017-05-01 18:12:39 +00: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 19:54:36 +00:00
|
|
|
exports.version = childProcess.execSync('git describe --tags', {encoding:'utf-8'})
|
|
|
|
exports.version = exports.version.substring(1, exports.version.length - 1)
|
|
|
|
|
2017-05-01 18:12:39 +00:00
|
|
|
exports.builtinPlugins = [
|
|
|
|
'terminus-core',
|
|
|
|
'terminus-settings',
|
|
|
|
'terminus-terminal',
|
|
|
|
'terminus-community-color-schemes',
|
2017-06-04 16:58:00 +00:00
|
|
|
'terminus-plugin-manager',
|
2017-11-27 15:30:59 +00:00
|
|
|
'terminus-ssh',
|
2017-05-01 18:12:39 +00:00
|
|
|
]
|
2018-03-23 16:15:11 +00:00
|
|
|
exports.bundledModules = [
|
|
|
|
'@angular',
|
|
|
|
'@ng-bootstrap',
|
|
|
|
]
|
2017-05-01 18:12:39 +00:00
|
|
|
exports.electronVersion = pkgInfo.devDependencies.electron
|