mirror of
https://github.com/catppuccin/userstyles.git
synced 2026-02-19 15:42:52 +08:00
Co-authored-by: uncenter <uncenter@uncenter.dev> Co-authored-by: Hammy <58985301+sgoudham@users.noreply.github.com> Co-authored-by: WalkQuackBack <quacksareback@duck.com>
10 lines
209 B
TypeScript
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,
|
|
);
|
|
}
|