UNPKG

@t1mmen/srtd

Version:

Supabase Repeatable Template Definitions (srtd): 🪄 Live-reloading SQL templates for Supabase DX. Make your database changes reviewable and migrations maintainable! 🚀

10 lines • 301 B
import fs from 'node:fs/promises'; import { fileExists } from './fileExists.js'; export async function safeCreate(filepath, content) { if (await fileExists(filepath)) { return false; } await fs.writeFile(filepath, content); return true; } //# sourceMappingURL=safeCreate.js.map