feat: removes git dates, enforces manual dates, and adds some validation to ensure presence

This commit is contained in:
Lewis Wynne 2026-03-27 18:10:40 +00:00
parent d65342fd73
commit 2a2331e79f
13 changed files with 101 additions and 105 deletions

View file

@ -1,19 +1,18 @@
import rss from '@astrojs/rss';
import { getCollection } from 'astro:content';
import type { APIContext } from 'astro';
import { getSlug, enrichPostsWithDates } from '../lib/md';
import { getSlug } from '../lib/md';
import { getTxtFiles } from '../lib/txt';
import { excerpt } from '../lib/format';
export async function GET(context: APIContext) {
const rawPosts = await getCollection('md');
const posts = enrichPostsWithDates(rawPosts);
const posts = await getCollection('md');
const txtFiles = getTxtFiles();
const items = [
...posts.map(post => ({
title: post.data.title,
pubDate: post.dates.created,
pubDate: post.data.date,
link: `/${getSlug(post.id)}`,
description: excerpt((post as any).body) || post.data.title,
})),