···77 ],
88 "scripts": {
99 "format:cli": "cd packages/cli && bun run format",
1010+ "format:server": "cd packages/server && bun run format",
1011 "format:docs": "cd docs && bun run format",
1112 "dev:cli": "cd packages/cli && bun run dev",
1213 "dev:docs": "cd docs && bun run dev",
···330330 const publishDate = new Date(post.frontmatter.publishDate);
331331332332 // Handle updatedAt: only set if explicitly provided in frontmatter
333333- let updatedAt = post.frontmatter.updatedAt
333333+ const updatedAt = post.frontmatter.updatedAt
334334 ? new Date(post.frontmatter.updatedAt)
335335 : undefined;
336336