feat: export creation date in dumped content (#2345)
* Export creation date in dumped content * date_creation -> dateCreated Co-authored-by: Joris Langlois <joris.langlois@knplabs.com>
This commit is contained in:
@@ -72,7 +72,8 @@ module.exports = {
|
||||
['published', page.isPublished.toString()],
|
||||
['date', page.updatedAt],
|
||||
['tags', page.tags ? page.tags.map(t => t.tag).join(', ') : ''],
|
||||
['editor', page.editorKey]
|
||||
['editor', page.editorKey],
|
||||
['dateCreated', page.createdAt],
|
||||
]
|
||||
switch (page.contentType) {
|
||||
case 'markdown':
|
||||
|
Reference in New Issue
Block a user