Releases: notiz-dev/scully-plugins
Releases · notiz-dev/scully-plugins
@notiz/scully-plugin-rss@1.1.0
@notiz/scully-plugin-rss@1.0.0
Breaking Changes
RSS Plugin has changed to routeDiscoveryDone and only needs to be required in your scully config file.
scully.app-name.config.js
require('@notiz/scully-plugin-rss');
exports.config = {
projectRoot: './src',
- defaultPostRenderers: ['rss'],
routes: {},
};or scully.app-name.config.ts
import { ScullyConfig } from '@scullyio/scully';
import '@notiz/scully-plugin-rss';
export const config: ScullyConfig = {
projectRoot: './src',
- defaultPostRenderers: ['rss'],
routes: {},
};Added
- Add
newestPostsFirstsorting option (#15)
Changed
- Change plugin type from
rendertorouteDiscoveryDonebenefit of only generating the RSS Feed once per run instead of after each page render (#15)
Credits
Huge thanks to @pjlamb12 for refactoring the rss plugin to the new routeDiscoveryDone plugin type.
0.2.0
0.2.0 (2020-05-13)
Features
- fouc: listen to angular ready event
- lazy-images: listen to angular ready event
- medium-zoom: listen to angular ready event