Skip to content

Commit

Permalink
fix #671
Browse files Browse the repository at this point in the history
  • Loading branch information
oscarotero committed Oct 6, 2024
1 parent 7556113 commit 40a650b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ Go to the `v1` branch to see the changelog of Lume 1.
- Support for `localStorage` and `sessionStorage` in watch mode.

### Fixed
- Transform images plugin with animated images [#671]
- When using special value `git created` for `date` variable, it will fall back to `git modified` first, then filesystem last modified date [#667].
- Environment variables defined in `_cms.ts` are available in `_config.ts`.
- Updated dependencies: `linkedom`, `sass`, `satori`, `terser`, `liquidjs`, `tailwind`, `date-fns`, `std`, `esbuild`, `preact`, `lightningcss`, `postcss`, `remark-rehype`, `rehype-stringify`, `react` types, `unocss`.
Expand Down Expand Up @@ -542,6 +543,7 @@ Go to the `v1` branch to see the changelog of Lume 1.
[#662]: https://github.com/lumeland/lume/issues/662
[#667]: https://github.com/lumeland/lume/issues/667
[#668]: https://github.com/lumeland/lume/issues/668
[#671]: https://github.com/lumeland/lume/issues/671

[2.3.3]: https://github.com/lumeland/lume/compare/v2.3.2...HEAD
[2.3.2]: https://github.com/lumeland/lume/compare/v2.3.1...v2.3.2
Expand Down
2 changes: 1 addition & 1 deletion deps/sharp.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,5 @@ export async function create(
return sharp(await svg2png(content));
}

return sharp(content);
return sharp(content, { pages: -1 });
}

0 comments on commit 40a650b

Please sign in to comment.