Skip to content

Commit 08bb23a

Browse files
committed
chore: build
1 parent 81730d4 commit 08bb23a

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

dist/action.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28683,6 +28683,11 @@ async function transform_blog(
2868328683
file: blogs[i].name,
2868428684
content: doc.contents.toString(),
2868528685
date: dates[i],
28686+
description: doc.data.frontmatter.description,
28687+
author: {
28688+
name: doc.data.frontmatter.author,
28689+
url: doc.data.frontmatter.authorURL,
28690+
}
2868628691
};
2868728692
})
2868828693
.sort((a, b) => (a.date.numeric < b.date.numeric ? 1 : -1));

dist/cli.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27446,6 +27446,11 @@ async function transform_blog(
2744627446
file: blogs[i].name,
2744727447
content: doc.contents.toString(),
2744827448
date: dates[i],
27449+
description: doc.data.frontmatter.description,
27450+
author: {
27451+
name: doc.data.frontmatter.author,
27452+
url: doc.data.frontmatter.authorURL,
27453+
}
2744927454
};
2745027455
})
2745127456
.sort((a, b) => (a.date.numeric < b.date.numeric ? 1 : -1));

0 commit comments

Comments
 (0)