Prettier format pending files

This commit is contained in:
Builder.io 2025-11-16 01:53:21 +00:00
parent c2e441a433
commit 32f965766c

View file

@ -43,7 +43,7 @@ try {
cwd: __dirname,
stdio: "inherit",
env: { ...process.env, SKIP_TSC: "true" },
}
},
);
console.log("✓ API routes transpiled successfully");
} catch (error) {
@ -72,7 +72,7 @@ function fixImportsInDir(dir) {
return match;
}
return `from "${importPath}.js"`;
}
},
);
fixedContent = fixedContent.replace(
@ -82,7 +82,7 @@ function fixImportsInDir(dir) {
return match;
}
return `from '${importPath}.js'`;
}
},
);
if (fixedContent !== content) {