Update extortion page and RPG LinkList

Update dependencies
Update to v0.9.1
This commit is contained in:
2022-12-23 19:33:06 -05:00
parent 8c024d74cd
commit c49be4c321
5 changed files with 1667 additions and 2658 deletions

View File

@@ -225,7 +225,10 @@ module.exports = async (config) => {
if (b.date_pub) return 1;
return 0;
},
pages = files.map(({ page }) => ({ ...page })).sort(sortByPubDate),
pages = files
.map(({ page }) => ({ ...page }))
.filter(({ is_draft }) => !is_draft)
.sort(sortByPubDate),
tagCloud = pages.reduce((acc, curr) => {
const { tags } = curr;
tags.forEach((tag) => {