tabby/scripts/vars.js

33 lines
910 B
JavaScript
Raw Normal View History

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