From 73d27758360107a446d9ec3975b485ed38cd1ec1 Mon Sep 17 00:00:00 2001 From: Cory Dransfeldt Date: Fri, 1 Mar 2024 14:52:49 -0800 Subject: [PATCH] fix: glob targets --- config/collections/index.js | 6 ++---- package.json | 2 +- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/config/collections/index.js b/config/collections/index.js index d959e182..24d41e05 100644 --- a/config/collections/index.js +++ b/config/collections/index.js @@ -40,9 +40,7 @@ export const tagMap = (collection) => { export const tagsSortedByCount = (collectionApi) => { const tagStats = {}; - const posts = collectionApi.getFilteredByGlob('src/posts/**/*.md').sort((a, b) => { - return a.date - b.date; - }); + const posts = collectionApi.getFilteredByGlob('src/posts/**/*.*').sort((a, b) => a.date - b.date); posts.forEach((post) => { post.data.tags.forEach((tag) => { if (!tagStats[tag]) tagStats[tag] = 1; @@ -89,7 +87,7 @@ export const postStats = (collectionApi) => { let highPostCount = 0 let yearProgress = 0 - const posts = collectionApi.getFilteredByGlob('src/posts/**/*.md').sort((a, b) => { + const posts = collectionApi.getFilteredByGlob('src/posts/**/*.*').sort((a, b) => { return a.date - b.date }) diff --git a/package.json b/package.json index 784a6f11..7953ff70 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "coryd.dev", - "version": "7.0.1", + "version": "7.0.2", "description": "The source for my personal site. Built using 11ty and hosted on Netlify.", "type": "module", "scripts": {