2026-06-18 23:54:27 +00:00
|
|
|
import { existsSync } from 'node:fs'
|
2026-05-05 23:05:02 +00:00
|
|
|
import { join } from 'node:path'
|
|
|
|
|
|
|
|
|
|
const repoRoot = join(import.meta.dir, '..', '..')
|
|
|
|
|
|
|
|
|
|
export function repoPath(...segments: string[]): string {
|
|
|
|
|
return join(repoRoot, ...segments)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export function coreSourcePath(...segments: string[]): string {
|
|
|
|
|
return repoPath('packages/core/src', ...segments)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export function cliSourcePath(...segments: string[]): string {
|
|
|
|
|
return repoPath('packages/cli/src', ...segments)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export function testPath(...segments: string[]): string {
|
|
|
|
|
return repoPath('tests', ...segments)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export function publicPath(...segments: string[]): string {
|
|
|
|
|
return repoPath('public', ...segments)
|
|
|
|
|
}
|
2026-06-18 23:54:27 +00:00
|
|
|
|
|
|
|
|
export function requireBuiltWorkspacePackages(): void {
|
|
|
|
|
const coreDist = repoPath('packages/core/dist/index.js')
|
|
|
|
|
if (!existsSync(coreDist)) {
|
|
|
|
|
throw new Error(
|
|
|
|
|
'CLI integration tests require built workspace packages. Run `bun run check` or `bun run --filter @open-pencil/core build` first.'
|
|
|
|
|
)
|
|
|
|
|
}
|
|
|
|
|
}
|