Skip to content

Commit a6680b9

Browse files
authored
Eleventy v3.0.0-beta-1 upgrade (#281)
Upgrade Eleventy from v2 to v3.0.0-beta-1. Includes additional Eleventy dependencies in order to prep for the full v3 release.
1 parent 2d0e8e9 commit a6680b9

9 files changed

+967
-733
lines changed

.eleventy.js

+3
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,9 @@ module.exports = function (eleventyConfig) {
3636
eleventyConfig.addShortcode("year", () => `${new Date().getFullYear()}`);
3737
eleventyConfig.addShortcode("packageVersion", () => `v${packageVersion}`);
3838

39+
/* Use for v3 upgrade in order to bypass the reservation of Collections name */
40+
eleventyConfig.setFreezeReservedData(false);
41+
3942
eleventyConfig.setBrowserSyncConfig({
4043
callbacks: {
4144
ready: function(err, bs) {

docs/feed.json

+8-8
Original file line numberDiff line numberDiff line change
@@ -14,20 +14,20 @@
1414
"id": "https://www.adamjolicoeur.com/apps/gamesandthings/",
1515
"url": "https://www.adamjolicoeur.com/apps/gamesandthings/",
1616
"title": "Games and Things",
17-
"date_published": "2024-09-13T19:55:08Z"
18-
}
19-
,
20-
{
21-
"id": "https://www.adamjolicoeur.com/prototypes/",
22-
"url": "https://www.adamjolicoeur.com/prototypes/",
23-
"title": "Prototypes",
24-
"date_published": "2024-09-11T15:50:33Z"
17+
"date_published": "2024-09-16T14:25:18Z"
2518
}
2619
,
2720
{
2821
"id": "https://www.adamjolicoeur.com/development/",
2922
"url": "https://www.adamjolicoeur.com/development/",
3023
"title": "development",
24+
"date_published": "2024-09-16T14:25:18Z"
25+
}
26+
,
27+
{
28+
"id": "https://www.adamjolicoeur.com/prototypes/",
29+
"url": "https://www.adamjolicoeur.com/prototypes/",
30+
"title": "Prototypes",
3131
"date_published": "2024-09-11T15:50:33Z"
3232
}
3333
,

docs/sitemap.xml

+5-5
Original file line numberDiff line numberDiff line change
@@ -102,18 +102,18 @@
102102
</url>
103103

104104
<url>
105-
<loc>https://www.adamjolicoeur.com/development/</loc>
106-
<lastmod>2024-09-11T15:50:33.458Z</lastmod>
105+
<loc>https://www.adamjolicoeur.com/prototypes/</loc>
106+
<lastmod>2024-09-11T15:50:33.459Z</lastmod>
107107
</url>
108108

109109
<url>
110-
<loc>https://www.adamjolicoeur.com/prototypes/</loc>
111-
<lastmod>2024-09-11T15:50:33.459Z</lastmod>
110+
<loc>https://www.adamjolicoeur.com/development/</loc>
111+
<lastmod>2024-09-16T14:25:18.976Z</lastmod>
112112
</url>
113113

114114
<url>
115115
<loc>https://www.adamjolicoeur.com/apps/gamesandthings/</loc>
116-
<lastmod>2024-09-13T19:55:08.607Z</lastmod>
116+
<lastmod>2024-09-16T14:25:18.976Z</lastmod>
117117
</url>
118118

119119
</urlset>

0 commit comments

Comments
 (0)