Skip to content

Commit e91b2dd

Browse files
committed
fix: everything
1 parent 70ab86c commit e91b2dd

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

app/pages/blog/release/0.8.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ title: 'npmx 0.8: around the moon'
1010
tags: ['OpenSource', 'Release']
1111
excerpt: "Today we're releasing npmx 0.8 – including a new command palette and a lot of other features."
1212
date: '2026-04-08'
13-
slug: '0.8'
13+
slug: 'release/0.8'
1414
description: "Today we're releasing npmx 0.8 – including a new command palette and a lot of other features."
1515
draft: false
1616
---

modules/blog.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ function resolveAuthors(authors: Author[], avatarMap: Map<string, string>): Reso
8888
* Resolves Bluesky avatars at build time.
8989
*/
9090
async function loadBlogPosts(blogDir: string, imagesDir: string): Promise<BlogPostFrontmatter[]> {
91-
const files = await Array.fromAsync(glob(join(blogDir, '*.md').replace(/\\/g, '/')))
91+
const files = await Array.fromAsync(glob(join(blogDir, '**/*.md').replace(/\\/g, '/')))
9292

9393
// First pass: extract raw frontmatter and collect all Bluesky handles
9494
const rawPosts: Array<{ frontmatter: Record<string, unknown> }> = []

0 commit comments

Comments
 (0)