mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-27 23:34:56 +00:00
19 lines
598 B
TypeScript
19 lines
598 B
TypeScript
import { ASTLambdaRefactor } from './ast-lambda-refactor'
|
|
import * as fs from 'fs/promises'
|
|
import * as path from 'path'
|
|
import { findLargeFiles } from './reporting/find-large-files'
|
|
import { generateProgressReport } from './reporting/generate-progress-report'
|
|
import { runCommand } from './cli/utils/run-command'
|
|
|
|
// Main execution
|
|
export async function main() {
|
|
try {
|
|
const options = parseArgs()
|
|
const extractor = new AutoCodeExtractor3000(options)
|
|
await extractor.run()
|
|
} catch (error) {
|
|
console.error('\n❌ Fatal Error:', error)
|
|
process.exit(1)
|
|
}
|
|
}
|