Update scripts/refactor-to-dynamic-imports.ts

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
This commit is contained in:
2026-01-18 21:47:20 +00:00
committed by GitHub
parent 2478948bcb
commit b3fa462527

View File

@@ -38,7 +38,7 @@ const targetComponents = {
atoms: ['Input']
}
async function refactorFile(filePath: string): Promise<boolean> {
export async function refactorFile(filePath: string): Promise<boolean> {
let content = await fs.readFile(filePath, 'utf-8')
let modified = false