11ty / eleventy-plugin-rss

A pack of Eleventy plugins for generating an RSS feed.
https://www.11ty.dev/docs/plugins/rss/
MIT License
92 stars 22 forks source link

Remove Luxon from date formatting for small speedup. #16

Closed slightlyoff closed 4 years ago

slightlyoff commented 4 years ago

My blog wound up using the rssDate function pretty heavily and profiling showed it was slow; this PR removes Luxon, which was reliably taking 4+ms to format a single date, replacing it with dirty, dirty date object hijinks. The output should be identical.

Also fixes broken test import.

zachleat commented 4 years ago

Thanks!