import type { Init } from "../init.ts"; export default function () { return ({ files }: Init) => { const paths = [ "_site", "_cache", ".env", ]; if (Deno.build.os === "darwin") { paths.push(".DS_Store"); } files.set( ".gitignore", paths.join("\n") + "\n", ); }; }