2c785779b5
Show the bundled version of Code OSS in the text-based output for --version and --help, in addition to the JSON output (--version --json) Closes: #4874
52 lines
1.6 KiB
TypeScript
52 lines
1.6 KiB
TypeScript
import { logger } from "@coder/logger"
|
|
import type { JSONSchemaForNPMPackageJsonFiles } from "@schemastore/package"
|
|
import * as os from "os"
|
|
import * as path from "path"
|
|
|
|
export const WORKBENCH_WEB_CONFIG_ID = "vscode-workbench-web-configuration"
|
|
|
|
export function getPackageJson(relativePath: string): JSONSchemaForNPMPackageJsonFiles {
|
|
let pkg = {}
|
|
try {
|
|
pkg = require(relativePath)
|
|
} catch (error: any) {
|
|
logger.warn(error.message)
|
|
}
|
|
|
|
return pkg
|
|
}
|
|
|
|
const pkg = getPackageJson("../../package.json")
|
|
const codePkg = getPackageJson("../../vendor/modules/code-oss-dev/package.json")
|
|
|
|
export const pkgName = pkg.name || "code-server"
|
|
export const version = pkg.version || "development"
|
|
export const commit = pkg.commit || "development"
|
|
export const rootPath = path.resolve(__dirname, "../..")
|
|
export const vsRootPath = path.join(rootPath, "vendor/modules/code-oss-dev")
|
|
export const codeVersion = codePkg.version || "development"
|
|
export const tmpdir = path.join(os.tmpdir(), "code-server")
|
|
export const isDevMode = commit === "development"
|
|
export const httpProxyUri =
|
|
process.env.HTTPS_PROXY || process.env.https_proxy || process.env.HTTP_PROXY || process.env.http_proxy
|
|
|
|
/**
|
|
* getVersionString returns a human-readable version string suitable
|
|
* for outputting to the console.
|
|
*/
|
|
export function getVersionString(): string {
|
|
return [version, commit, "with Code", codeVersion].join(" ")
|
|
}
|
|
|
|
/**
|
|
* getVersionJsonString returns a machine-readable version string
|
|
* suitable for outputting to the console.
|
|
*/
|
|
export function getVersionJsonString(): string {
|
|
return JSON.stringify({
|
|
codeServer: version,
|
|
commit,
|
|
vscode: codeVersion,
|
|
})
|
|
}
|