gatsby-core-theme 44.12.2 → 44.12.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
## [44.12.3](https://gitlab.com/g2m-gentoo/team-floyd/themes/gatsby-themes/compare/v44.12.2...v44.12.3) (2026-01-22)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* add authors ([b485c14](https://gitlab.com/g2m-gentoo/team-floyd/themes/gatsby-themes/commit/b485c143a1c03b77d6b817c8bc9ae50ac6c06eeb))
|
|
7
|
+
* fix authors object ([a884b6c](https://gitlab.com/g2m-gentoo/team-floyd/themes/gatsby-themes/commit/a884b6ce90f707c190e05c4383a03361c0b5039f))
|
|
8
|
+
* update authors ([1248b80](https://gitlab.com/g2m-gentoo/team-floyd/themes/gatsby-themes/commit/1248b8093aff061c4c46eef4f86e33859c1d654e))
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
* Merge branch 'EN-328' into 'master' ([d1d768d](https://gitlab.com/g2m-gentoo/team-floyd/themes/gatsby-themes/commit/d1d768de239a5f0a3a6c15b81035cfbba3e3808b))
|
|
12
|
+
|
|
1
13
|
## [44.12.2](https://gitlab.com/g2m-gentoo/team-floyd/themes/gatsby-themes/compare/v44.12.1...v44.12.2) (2026-01-19)
|
|
2
14
|
|
|
3
15
|
|
package/gatsby-node.mjs
CHANGED
|
@@ -64,6 +64,8 @@ let templatesData = null;
|
|
|
64
64
|
let defaultLanguage = null;
|
|
65
65
|
const pagesToCreate = [];
|
|
66
66
|
let commentsData = null;
|
|
67
|
+
let authors = null;
|
|
68
|
+
|
|
67
69
|
|
|
68
70
|
// eslint-disable-next-line import/prefer-default-export
|
|
69
71
|
export const createPages = async (
|
|
@@ -137,6 +139,8 @@ export const createPages = async (
|
|
|
137
139
|
processedPage.preconnect_links = preconnectLinks;
|
|
138
140
|
|
|
139
141
|
siteSchema = schemaData[page["market_id"]];
|
|
142
|
+
authors = siteSettingsData.authors;
|
|
143
|
+
|
|
140
144
|
|
|
141
145
|
page.siteInfo = siteGeneralData;
|
|
142
146
|
page.siteSchema = siteSchema;
|
|
@@ -170,6 +174,7 @@ export const createPages = async (
|
|
|
170
174
|
page.type,
|
|
171
175
|
ribbonsData
|
|
172
176
|
),
|
|
177
|
+
authors,
|
|
173
178
|
prefilledModules,
|
|
174
179
|
siteGeneralData,
|
|
175
180
|
autogenerated,
|
package/package.json
CHANGED