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

Function getDevDataFilePath

core/util/paths.ts:240–249  ·  view source on GitHub ↗
(
  eventName: DevEventName,
  schema: string,
)

Source from the content-addressed store, hash-verified

238}
239
240export function getDevDataFilePath(
241 eventName: DevEventName,
242 schema: string,
243): string {
244 const versionPath = path.join(getDevDataPath(), schema);
245 if (!fs.existsSync(versionPath)) {
246 fs.mkdirSync(versionPath);
247 }
248 return path.join(versionPath, `${String(eventName)}.jsonl`);
249}
250
251function editConfigJson(
252 callback: (config: SerializedContinueConfig) => SerializedContinueConfig,

Callers 3

log.vitest.tsFile · 0.90
logLocalDataMethod · 0.85
moveToV1FolderIfExistsFunction · 0.85

Calls 1

getDevDataPathFunction · 0.85

Tested by

no test coverage detected