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

Function getContinueUtilsPath

core/util/paths.ts:50–56  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

48}
49
50export function getContinueUtilsPath(): string {
51 const utilsPath = path.join(getContinueGlobalPath(), ".utils");
52 if (!fs.existsSync(utilsPath)) {
53 fs.mkdirSync(utilsPath);
54 }
55 return utilsPath;
56}
57
58export function getGlobalContinueIgnorePath(): string {
59 const continueIgnorePath = path.join(

Callers 4

ChromiumInstallerClass · 0.90
getChromiumPathFunction · 0.85
getRepoMapFilePathFunction · 0.85
getEsbuildBinaryPathFunction · 0.85

Calls 1

getContinueGlobalPathFunction · 0.85

Tested by

no test coverage detected