tabby/scripts/vars.js

34 lines
958 B
JavaScript
Raw Normal View History

2017-05-01 18:12:39 +00:00
const path = require('path')
const fs = require('fs')
const semver = require('semver')
2017-06-26 19:54:36 +00:00
const childProcess = require('child_process')
2017-05-01 18:12:39 +00:00
2018-12-15 14:49:06 +00:00
const electronInfo = JSON.parse(fs.readFileSync(path.resolve(__dirname, '../node_modules/electron/package.json')))
2017-05-01 18:12:39 +00:00
2021-07-04 14:48:48 +00:00
exports.version = childProcess.execSync('git describe --tags', { encoding:'utf-8' })
2018-12-21 22:06:24 +00:00
exports.version = exports.version.substring(1).trim()
exports.version = exports.version.replace('-', '-c')
2017-06-26 19:54:36 +00:00
if (exports.version.includes('-c')) {
2021-07-04 14:48:48 +00:00
exports.version = semver.inc(exports.version, 'prepatch').replace('-0', '-nightly.0')
}
2017-05-01 18:12:39 +00:00
exports.builtinPlugins = [
2021-07-04 14:48:48 +00:00
'tabby-core',
'tabby-settings',
'tabby-terminal',
'tabby-electron',
'tabby-local',
'tabby-web',
'tabby-community-color-schemes',
'tabby-plugin-manager',
'tabby-ssh',
'tabby-serial',
'tabby-telnet',
2017-05-01 18:12:39 +00:00
]
2018-03-23 16:15:11 +00:00
exports.bundledModules = [
2021-07-04 14:48:48 +00:00
'@angular',
'@ng-bootstrap',
2018-03-23 16:15:11 +00:00
]
2018-12-15 14:49:06 +00:00
exports.electronVersion = electronInfo.version