Skip to content

Commit

Permalink
hotfix
Browse files Browse the repository at this point in the history
  • Loading branch information
oscarotero committed Sep 10, 2024
1 parent f19634d commit 96f2bb3
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/),
and this project try to adheres to [Semantic Versioning](https://semver.org/).
Go to the `v1` branch to see the changelog of Lume 1.

## [2.3.2] - 2024-09-10
### Fixed
- Nav plugin: include `slug` in the `toJSON` export.

## [2.3.1] - 2024-09-09
### Added
- New option `watcher.include` to add extra external paths to the watcher.
Expand Down Expand Up @@ -524,6 +528,7 @@ Go to the `v1` branch to see the changelog of Lume 1.
[#655]: https://github.com/lumeland/lume/issues/655
[#662]: https://github.com/lumeland/lume/issues/662

[2.3.2]: https://github.com/lumeland/lume/compare/v2.3.1...v2.3.2
[2.3.1]: https://github.com/lumeland/lume/compare/v2.3.0...v2.3.1
[2.3.0]: https://github.com/lumeland/lume/compare/v2.2.4...v2.3.0
[2.2.4]: https://github.com/lumeland/lume/compare/v2.2.3...v2.2.4
Expand Down
2 changes: 2 additions & 0 deletions plugins/nav.ts
Original file line number Diff line number Diff line change
Expand Up @@ -195,6 +195,7 @@ export interface NavData {
}

export interface NavJSON {
slug: string;
data: {
title?: string;
url?: string;
Expand Down Expand Up @@ -293,6 +294,7 @@ function convert(
parent,
toJSON() {
return {
slug: this.slug,
data: {
title: this.data.title,
url: this.data.url,
Expand Down

0 comments on commit 96f2bb3

Please sign in to comment.