oh no where did astro go

This commit is contained in:
Cory LaViska
2024-04-17 11:20:27 -04:00
parent 8e5e039af8
commit 67b2888489
1189 changed files with 23848 additions and 35527 deletions

15
scripts/docs.js Normal file
View File

@@ -0,0 +1,15 @@
import { deleteAsync } from 'del';
import { docsDir, siteDir } from './utils.js';
import { join } from 'path';
import Eleventy from '@11ty/eleventy';
const elev = new Eleventy(docsDir, siteDir, {
quietMode: true,
configPath: join(docsDir, '.eleventy.js')
});
// Cleanup
await deleteAsync(siteDir);
// Write it
await elev.write();