1
0
mirror of synced 2025-12-30 03:01:36 -05:00

log out an error when we can't parse version frontmatter

This commit is contained in:
Hector Alfaro
2022-05-05 14:27:07 -04:00
parent d5f4fcf0ee
commit bd090873ee

View File

@@ -112,7 +112,11 @@ for (const file of articleFiles) {
prodCell += '<br>'
}
}
} catch (e) {}
} catch (e) {
console.error(
`Version information for ${file.filename} couldn't be determined from its frontmatter.`
)
}
markdownTable += `| ${contentCell} | ${previewCell} | ${prodCell} | |\n`
}
setOutput('changesTable', markdownTable)