fix: link sort

This commit is contained in:
Cory Dransfeldt 2024-02-18 21:35:08 -08:00
parent 5b94b003cb
commit e2eb2da375
2 changed files with 3 additions and 3 deletions

View file

@ -1,6 +1,6 @@
{
"name": "coryd.dev",
"version": "6.0.1",
"version": "6.0.2",
"description": "The source for my personal site. Built using 11ty and hosted on Netlify.",
"type": "module",
"scripts": {

View file

@ -79,9 +79,9 @@ export default async function () {
if (process.env.ELEVENTY_PRODUCTION) {
const mergedData = filterDuplicates([
...Object.values(cachedLinks),
...formatLinkData(fullData).filter((link) => link.tags.includes('share'))
])
...Object.values(cachedLinks),
]).sort((a, b) => new Date(b['date']) - new Date(a['date']))
await client.send(
new PutObjectCommand({