mirror of
https://github.com/Kaelio/ktx.git
synced 2026-07-22 11:51:01 +02:00
Initial open-source release
This commit is contained in:
commit
1a42152e6f
1199 changed files with 257054 additions and 0 deletions
6
packages/context/src/project/local-state-db.ts
Normal file
6
packages/context/src/project/local-state-db.ts
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
import { join } from 'node:path';
|
||||
import type { KloLocalProject } from './project.js';
|
||||
|
||||
export function kloLocalStateDbPath(project: Pick<KloLocalProject, 'projectDir'>): string {
|
||||
return join(project.projectDir, '.klo', 'db.sqlite');
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue