gatsby-core-theme 2.0.10 → 2.0.11
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 +10 -0
- package/gatsby-node.esm.js +11 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,13 @@
|
|
|
1
|
+
## [2.0.11](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/compare/v2.0.10...v2.0.11) (2022-01-04)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* sports tracker pages ([d241b52](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/d241b5268c9c0451e9d05ad3db44ce2138a84b06))
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
* Merge branch 'master' of git.ilcd.rocks:team-floyd/themes/gatsby-themes ([9481c20](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/9481c20dd68a400cf8d58d6f0165724a452f60b5))
|
|
10
|
+
|
|
1
11
|
## [2.0.10](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/compare/v2.0.9...v2.0.10) (2022-01-03)
|
|
2
12
|
|
|
3
13
|
|
package/gatsby-node.esm.js
CHANGED
|
@@ -303,11 +303,22 @@ exports.createPages = async ({ actions: { createPage } }, themeOptions) => {
|
|
|
303
303
|
return { tracker, providerObject };
|
|
304
304
|
});
|
|
305
305
|
providerData.forEach((provider) => {
|
|
306
|
+
const trackerPageObject = {
|
|
307
|
+
meta_title: 'Tracker',
|
|
308
|
+
template: 'tracker',
|
|
309
|
+
title: 'Tracker',
|
|
310
|
+
type: 'page',
|
|
311
|
+
language: languageKey,
|
|
312
|
+
path: provider.tracker,
|
|
313
|
+
meta_robots: ['noindex', 'nofollow'],
|
|
314
|
+
};
|
|
306
315
|
createPage({
|
|
307
316
|
path: provider.tracker,
|
|
308
317
|
component: require.resolve('./src/components/app.js'),
|
|
309
318
|
context: {
|
|
319
|
+
page: trackerPageObject,
|
|
310
320
|
provider: provider.providerObject,
|
|
321
|
+
isTracker: true,
|
|
311
322
|
},
|
|
312
323
|
});
|
|
313
324
|
});
|