Skip to content

Commit 48c2eea

Browse files
committed
chore: build
1 parent 74883d8 commit 48c2eea

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

dist/action.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28687,7 +28687,8 @@ async function transform_blog(
2868728687
author: {
2868828688
name: doc.data.frontmatter.author,
2868928689
url: doc.data.frontmatter.authorURL,
28690-
}
28690+
},
28691+
draft: doc.data.frontmatter.draft || false
2869128692
};
2869228693
})
2869328694
.sort((a, b) => (a.date.numeric < b.date.numeric ? 1 : -1));

dist/cli.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27450,7 +27450,8 @@ async function transform_blog(
2745027450
author: {
2745127451
name: doc.data.frontmatter.author,
2745227452
url: doc.data.frontmatter.authorURL,
27453-
}
27453+
},
27454+
draft: doc.data.frontmatter.draft || false
2745427455
};
2745527456
})
2745627457
.sort((a, b) => (a.date.numeric < b.date.numeric ? 1 : -1));

0 commit comments

Comments
 (0)