mirror of
https://github.com/fabro-sh/fabro.git
synced 2026-08-28 05:27:41 +00:00
32 lines
1.1 KiB
TypeScript
32 lines
1.1 KiB
TypeScript
// Normalizes openapi-generator output so `bun run generate` is idempotent.
|
|
//
|
|
// The typescript-axios templates emit trailing spaces on some lines and extra
|
|
// blank lines at end of file. Left alone, every regeneration produces a noisy
|
|
// whitespace diff that masks real spec/client drift. This pass strips trailing
|
|
// whitespace from every line and ends each file with exactly one newline.
|
|
//
|
|
// openapi-generator maps arrays with `uniqueItems` to `Set<T>`, but Axios
|
|
// decodes and encodes their JSON representation as arrays. Keep the generated
|
|
// type aligned with the runtime wire value.
|
|
|
|
import { Glob } from "bun";
|
|
|
|
const glob = new Glob("src/**/*.ts");
|
|
let changed = 0;
|
|
|
|
for await (const path of glob.scan(".")) {
|
|
const original = await Bun.file(path).text();
|
|
const normalized =
|
|
original
|
|
.replace(/\bSet</g, "Array<")
|
|
.split("\n")
|
|
.map((line) => line.replace(/\s+$/, ""))
|
|
.join("\n")
|
|
.replace(/\n+$/, "") + "\n";
|
|
if (normalized !== original) {
|
|
await Bun.write(path, normalized);
|
|
changed += 1;
|
|
}
|
|
}
|
|
|
|
console.log(`normalize-generated: ${changed} file(s) updated`);
|