Felix Schneider 84c0edf1ce
docs: add starlight (#1859)
Co-authored-by: uncenter <uncenter@uncenter.dev>
Co-authored-by: Hammy <58985301+sgoudham@users.noreply.github.com>
Co-authored-by: WalkQuackBack <quacksareback@duck.com>
2025-08-31 19:02:22 -04:00

10 lines
209 B
TypeScript

export function writeWithPreamble(
filePath: string,
fileContent: string,
) {
return Deno.writeTextFile(
filePath,
"# THIS FILE IS AUTOGENERATED. DO NOT EDIT IT BY HAND.\n" + fileContent,
);
}