(config: Config, cwd: string)
| 3 | import type { Config } from './schema.ts'; |
| 4 | |
| 5 | export function resolveContentDir(config: Config, cwd: string): string { |
| 6 | return resolve(cwd, config.content.dir); |
| 7 | } |
| 8 | |
| 9 | export function resolveLockDir(projectDir: string): string { |
| 10 | return getLocalDir(projectDir); |
no outgoing calls
no test coverage detected