add & deprecate old markdownSummary export

This commit is contained in:
Rob Herley
2022-05-05 19:44:13 +00:00
committed by GitHub
parent 01aceeaad6
commit 07242b37a4
2 changed files with 12 additions and 2 deletions

View File

@@ -354,5 +354,10 @@ class Summary {
}
}
// singleton export
export const summary = new Summary()
const _summary = new Summary()
/**
* @deprecated use `core.summary`
*/
export const markdownSummary = _summary
export const summary = _summary