Skip to content

Commit

Permalink
fix 0.9.2
Browse files Browse the repository at this point in the history
  • Loading branch information
oscarotero committed Aug 8, 2024
1 parent c269eca commit 8823d6c
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/) and this
project adheres to [Semantic Versioning](http://semver.org/).

## [0.9.2] - 2024-08-08
### Added
- Fix passing options to plugins.

## [0.9.1] - 2024-08-08
### Added
- Option to customize the favicon.
Expand Down Expand Up @@ -133,6 +137,7 @@ First version
[#8]: https://github.com/lumeland/theme-simple-wiki/issues/8
[#9]: https://github.com/lumeland/theme-simple-wiki/issues/9

[0.9.2]: https://github.com/lumeland/theme-simple-wiki/compare/v0.9.1...v0.9.2
[0.9.1]: https://github.com/lumeland/theme-simple-wiki/compare/v0.9.0...v0.9.1
[0.9.0]: https://github.com/lumeland/theme-simple-wiki/compare/v0.8.2...v0.9.0
[0.8.2]: https://github.com/lumeland/theme-simple-wiki/compare/v0.8.1...v0.8.2
Expand Down
5 changes: 3 additions & 2 deletions mod.ts
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
import plugins from "./plugins.ts";

import "lume/types.ts";
import type { Options } from "./plugins.ts";

export default function () {
export default function (options?: Options) {
return (site: Lume.Site) => {
// Configure the site
site.use(plugins());
site.use(plugins(options));

// Add remote files
const files = [
Expand Down

0 comments on commit 8823d6c

Please sign in to comment.