chore: a bit more truncation

This commit is contained in:
Cory Dransfeldt 2024-06-13 16:35:29 -07:00
parent 433905c260
commit e58a220488
No known key found for this signature in database
3 changed files with 4 additions and 4 deletions

View file

@ -79,7 +79,7 @@ export const allContent = (collection) => {
} }
if (item?.['link']) content['url'] = item?.['link'] if (item?.['link']) content['url'] = item?.['link']
if (item?.['slug']) content['url'] = new URL(item['slug'], BASE_URL).toString() if (item?.['slug']) content['url'] = new URL(item['slug'], BASE_URL).toString()
if (item?.['description']) content['description'] = `${item['description'].split(' ').slice(0, 150).join(' ')}...<br/><br/>` if (item?.['description']) content['description'] = `${item['description'].split(' ').slice(0, 100).join(' ')}...<br/><br/>`
const date = getDate ? parseDate(getDate(item)) : null const date = getDate ? parseDate(getDate(item)) : null
if (date) content['date'] = date if (date) content['date'] = date
aggregateContent.push(content) aggregateContent.push(content)

4
package-lock.json generated
View file

@ -1,12 +1,12 @@
{ {
"name": "coryd.dev", "name": "coryd.dev",
"version": "19.2.5", "version": "19.2.6",
"lockfileVersion": 3, "lockfileVersion": 3,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "coryd.dev", "name": "coryd.dev",
"version": "19.2.5", "version": "19.2.6",
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {
"@cdransf/api-text": "^1.4.0", "@cdransf/api-text": "^1.4.0",

View file

@ -1,6 +1,6 @@
{ {
"name": "coryd.dev", "name": "coryd.dev",
"version": "19.2.5", "version": "19.2.6",
"description": "The source for my personal site. Built using 11ty.", "description": "The source for my personal site. Built using 11ty.",
"type": "module", "type": "module",
"scripts": { "scripts": {