1
1
mirror of https://github.com/Eugeny/tabby.git synced 2024-11-30 13:04:27 +03:00
tabby/scripts/vars.mjs

81 lines
2.3 KiB
JavaScript
Raw Normal View History

import * as path from 'path'
import * as fs from 'fs'
import * as semver from 'semver'
import * as childProcess from 'child_process'
process.env.ARCH = ((process.env.ARCH || process.arch) === 'arm') ? 'armv7l' : process.env.ARCH || process.arch
import * as url from 'url'
const __dirname = url.fileURLToPath(new URL('.', import.meta.url))
2017-05-01 21:12:39 +03:00
2018-12-15 17:49:06 +03:00
const electronInfo = JSON.parse(fs.readFileSync(path.resolve(__dirname, '../node_modules/electron/package.json')))
2017-05-01 21:12:39 +03:00
export let version = childProcess.execSync('git describe --tags', { encoding:'utf-8' })
version = version.substring(1).trim()
version = version.replace('-', '-c')
2017-06-26 22:54:36 +03:00
if (version.includes('-c')) {
version = semver.inc(version, 'prepatch').replace('-0', `-nightly.${process.env.REV ?? 0}`)
}
export const builtinPlugins = [
2021-07-04 17:48:48 +03:00
'tabby-core',
'tabby-settings',
'tabby-terminal',
'tabby-web',
'tabby-community-color-schemes',
'tabby-ssh',
'tabby-serial',
'tabby-telnet',
2021-08-04 21:21:14 +03:00
'tabby-local',
2023-03-21 12:36:40 +03:00
'tabby-electron',
2021-08-04 21:21:14 +03:00
'tabby-plugin-manager',
'tabby-linkifier',
]
export const packagesWithDocs = [
['.', 'tabby-core'],
['terminal', 'tabby-terminal'],
['local', 'tabby-local'],
['settings', 'tabby-settings'],
2017-05-01 21:12:39 +03:00
]
2021-07-11 23:59:39 +03:00
export const allPackages = [
...builtinPlugins,
2021-07-11 23:59:39 +03:00
'web',
'tabby-web-demo',
]
export const bundledModules = [
2021-07-04 17:48:48 +03:00
'@angular',
'@ng-bootstrap',
2018-03-23 19:15:11 +03:00
]
export const electronVersion = electronInfo.version
2022-10-01 14:04:55 +03:00
export const keygenConfig = {
2022-10-01 14:04:55 +03:00
provider: 'keygen',
account: 'a06315f2-1031-47c6-9181-e92a20ec815e',
channel: 'stable',
product: {
win32: {
x64: 'f481b9d6-d5da-4970-b926-f515373e986f',
arm64: '950999b9-371c-419b-b291-938c5e4d364c',
}[process.env.ARCH],
2022-10-01 14:04:55 +03:00
darwin: {
arm64: '98fbadee-c707-4cd6-9d99-56683595a846',
x86_64: 'f5a48841-d5b8-4b7b-aaa7-cf5bffd36461',
x64: 'f5a48841-d5b8-4b7b-aaa7-cf5bffd36461',
}[process.env.ARCH],
2022-10-01 14:04:55 +03:00
linux: {
x64: '7bf45071-3031-4a26-9f2e-72604308313e',
arm64: '39e3c736-d4d4-4fbf-a201-324b7bab0d17',
armv7l: '50ae0a82-7f47-4fa4-b0a8-b0d575ce9409',
2022-10-01 15:01:02 +03:00
armhf: '7df5aa12-04ab-4075-a0fe-93b0bbea9643',
}[process.env.ARCH],
2022-10-01 14:04:55 +03:00
}[process.platform],
}
if (!keygenConfig.product) {
throw new Error(`Unrecognized platform ${process.platform}/${process.env.ARCH}`)
2022-10-01 14:04:55 +03:00
}