MCPcopy Index your code
hub / github.com/continuedev/continue / getVersionInfo

Function getVersionInfo

extensions/cli/src/infoScreen.ts:14–23  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

12import { getVersion } from "./version.js";
13
14function getVersionInfo(): string[] {
15 const version = getVersion();
16 const cwd = process.cwd();
17
18 return [
19 chalk.white("CLI Information:"),
20 ` Version: ${chalk.green(version)}`,
21 ` Working Directory: ${chalk.blue(cwd)}`,
22 ];
23}
24
25function getConfigInfo(): string[] {
26 const lines: string[] = ["", chalk.white("Configuration:")];

Callers 1

handleInfoSlashCommandFunction · 0.85

Calls 1

getVersionFunction · 0.85

Tested by

no test coverage detected