fix: link sort
This commit is contained in:
parent
5b94b003cb
commit
e2eb2da375
2 changed files with 3 additions and 3 deletions
|
@ -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": {
|
||||
|
|
|
@ -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({
|
||||
|
|
Reference in a new issue