Skip to content

Commit

Permalink
Update dependencies, incl. eleventy-plugin-rss
Browse files Browse the repository at this point in the history
  • Loading branch information
matthiasott committed Aug 19, 2024
1 parent 23e95b3 commit 5237261
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 19 deletions.
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v16.14.0
v22.6.0
32 changes: 16 additions & 16 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "eleventy-plus-vite",
"version": "1.2.0",
"type": "module",
"type": "module",
"description": "A clean and simple Eleventy 2 Starter Kit with Vite",
"browserslist": [
"> 0.5%",
Expand Down Expand Up @@ -30,26 +30,26 @@
"@11ty/eleventy": "^3.0.0-alpha.14",
"@11ty/eleventy-img": "^4.0.2",
"@11ty/eleventy-navigation": "^0.3.5",
"@11ty/eleventy-plugin-rss": "^1.2.0",
"@11ty/eleventy-plugin-rss": "^2.0.2",
"@11ty/eleventy-plugin-syntaxhighlight": "^5.0.0",
"@11ty/eleventy-plugin-vite": "^5.0.0-alpha.1",
"autoprefixer": "^10.4.16",
"cssnano": "^6.0.1",
"autoprefixer": "^10.4.20",
"cssnano": "^7.0.5",
"cssremedy": "^0.1.0-beta.2",
"del-cli": "^5.1.0",
"eslint": "^8.54.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^16.3.1",
"eslint-plugin-promise": "^6.0.0",
"focus-visible": "^5.2.0",
"luxon": "^3.4.4",
"markdown-it": "^14.0.0",
"markdown-it-anchor": "^8.6.7",
"eslint": "^8.57.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-promise": "^6.6.0",
"focus-visible": "^5.2.1",
"luxon": "^3.5.0",
"markdown-it": "^14.1.0",
"markdown-it-anchor": "^9.0.1",
"npm-run-all": "^4.1.5",
"postcss-nesting": "^12.0.1",
"postcss-nesting": "^13.0.0",
"rollup-plugin-critical": "^1.0.13",
"sass": "^1.69.5",
"vite": "^5.3.3"
"sass": "^1.77.8",
"vite": "^5.4.1"
}
}
4 changes: 2 additions & 2 deletions src/feed.xml.njk
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,15 @@ eleventyExcludeFromCollections: true
<name>{{ meta.title }}</name>
</author>
{% if collections.posts %}
<updated>{{ collections.posts | rssLastUpdatedDate }}</updated>
<updated>{{ collections.posts | getNewestCollectionItemDate | dateToRfc3339 }}</updated>
{% endif %}
<id>{{ meta.url }}/</id>
{%- for post in collections.posts | reverse -%}
{% set absolutePostUrl %}{{ post.url | url | absoluteUrl(meta.url) }}{% endset %}
<entry>
<title>{{ post.data.title }}</title>
<link href="{{ absolutePostUrl }}"/>
<updated>{{ post.date | rssDate }}</updated>
<updated>{{ post.date | dateToRfc3339 }}</updated>
<id>{{ absolutePostUrl }}</id>
<content type="html"><![CDATA[
{{ post.templateContent | htmlToAbsoluteUrls(absolutePostUrl) | safe }}
Expand Down

0 comments on commit 5237261

Please sign in to comment.