mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-25 22:34:56 +00:00
11 lines
345 B
TypeScript
11 lines
345 B
TypeScript
import { writeFileSync } from 'fs'
|
|
|
|
export function writeSummary(outputPath: string, serialized: string): void {
|
|
try {
|
|
writeFileSync(outputPath, serialized)
|
|
console.error(`Implementation analysis written to ${outputPath}`)
|
|
} catch (error) {
|
|
console.error(`Failed to write implementation analysis to ${outputPath}:`, error)
|
|
}
|
|
}
|