mirror of https://git.tuxpa.in/a/code-server.git
14 lines
374 B
TypeScript
14 lines
374 B
TypeScript
|
import { logger } from "@coder/logger"
|
||
|
import * as path from "path"
|
||
|
|
||
|
let pkg: { version?: string; commit?: string } = {}
|
||
|
try {
|
||
|
pkg = require("../../package.json")
|
||
|
} catch (error) {
|
||
|
logger.warn(error.message)
|
||
|
}
|
||
|
|
||
|
export const version = pkg.version || "development"
|
||
|
export const commit = pkg.commit || "development"
|
||
|
export const rootPath = path.resolve(__dirname, "../..")
|