MCPcopy Create free account
hub / github.com/continuedev/continue / getMigrationsFolderPath

Function getMigrationsFolderPath

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

Source from the content-addressed store, hash-verified

290}
291
292function getMigrationsFolderPath(): string {
293 const migrationsPath = path.join(getContinueGlobalPath(), ".migrations");
294 if (!fs.existsSync(migrationsPath)) {
295 fs.mkdirSync(migrationsPath);
296 }
297 return migrationsPath;
298}
299
300export async function migrate(
301 id: string,

Callers 1

migrateFunction · 0.85

Calls 1

getContinueGlobalPathFunction · 0.85

Tested by

no test coverage detected