mirror of
https://github.com/Eugeny/tabby.git
synced 2025-07-22 03:18:01 +00:00
.github
.vscode
app
build
docs
extras
locale
patches
scripts
build-docs.js
build-linux.js
build-macos.js
build-modules.js
build-native.js
build-typings.js
build-windows.js
generate-icon-metadata.js
i18n-extract.js
install-deps.js
prepackage-plugins.js
publish-plugins.js
sentry-upload.js
vars.js
snap
tabby-community-color-schemes
tabby-core
tabby-electron
tabby-linkifier
tabby-local
tabby-plugin-manager
tabby-serial
tabby-settings
tabby-ssh
tabby-telnet
tabby-terminal
tabby-uac
tabby-web
tabby-web-demo
web
.all-contributorsrc
.eslintrc.yml
.gitignore
.mergify.yml
.pug-lintrc.js
CODE_OF_CONDUCT.md
HACKING.md
LICENSE
README.ko-KR.md
README.md
README.ru-RU.md
README.zh-CN.md
appveyor.yml
electron-builder.yml
firebase.json
package.json
tsconfig.json
typedoc.js
webpack.config.js
webpack.plugin.config.js
yarn.lock
49 lines
1.2 KiB
JavaScript
Executable File
49 lines
1.2 KiB
JavaScript
Executable File
const path = require('path')
|
|
const fs = require('fs')
|
|
const semver = require('semver')
|
|
const childProcess = require('child_process')
|
|
|
|
const electronInfo = JSON.parse(fs.readFileSync(path.resolve(__dirname, '../node_modules/electron/package.json')))
|
|
|
|
exports.version = childProcess.execSync('git describe --tags', { encoding:'utf-8' })
|
|
exports.version = exports.version.substring(1).trim()
|
|
exports.version = exports.version.replace('-', '-c')
|
|
|
|
if (exports.version.includes('-c')) {
|
|
exports.version = semver.inc(exports.version, 'prepatch').replace('-0', `-nightly.${process.env.REV ?? 0}`)
|
|
}
|
|
|
|
exports.builtinPlugins = [
|
|
'tabby-core',
|
|
'tabby-settings',
|
|
'tabby-terminal',
|
|
'tabby-web',
|
|
'tabby-community-color-schemes',
|
|
'tabby-ssh',
|
|
'tabby-serial',
|
|
'tabby-telnet',
|
|
'tabby-electron',
|
|
'tabby-local',
|
|
'tabby-plugin-manager',
|
|
'tabby-linkifier',
|
|
]
|
|
|
|
exports.packagesWithDocs = [
|
|
['.', 'tabby-core'],
|
|
['terminal', 'tabby-terminal'],
|
|
['local', 'tabby-local'],
|
|
['settings', 'tabby-settings'],
|
|
]
|
|
|
|
exports.allPackages = [
|
|
...exports.builtinPlugins,
|
|
'web',
|
|
'tabby-web-demo',
|
|
]
|
|
|
|
exports.bundledModules = [
|
|
'@angular',
|
|
'@ng-bootstrap',
|
|
]
|
|
exports.electronVersion = electronInfo.version
|