diff --git a/CHANGELOG.md b/CHANGELOG.md index 7d55134..846d764 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/). +## [6.0.2](https://github.com/uttori/uttori-wiki/compare/v6.0.1...v6.0.2) - 2023-12-25 + +- 🛠 Fix lack of exports of `EJSRenderer` & `DownloadRouter` + ## [6.0.1](https://github.com/uttori/uttori-wiki/compare/v6.0.0...v6.0.1) - 2023-12-25 - 🧰 Add support for setting the `layout` on documents to determine the layout to render with diff --git a/src/index.js b/src/index.js index 7b15995..7baa0d0 100644 --- a/src/index.js +++ b/src/index.js @@ -3,3 +3,5 @@ export { default as wiki } from './middleware.js'; export { default as UttoriWiki } from './wiki.js'; export { default as wikiFlash } from './wiki-flash.js'; export { default as AddQueryOutputToViewModel } from './plugins/add-query-output.js'; +export { default as DownloadRouter } from './plugins/add-download-route.js'; +export { default as EJSRenderer } from './plugins/add-ejs-includes.js';