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 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
 
@@ -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
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gatsby-core-theme",
3
- "version": "2.0.10",
3
+ "version": "2.0.11",
4
4
  "description": "Gatsby Theme NPM Package",
5
5
  "main": "index.js",
6
6
  "GATSBY_RECAPTCHA_SITEKEY": "6LfoyvMUAAAAAO4nl_MQnqHb4XdHxEiu5cXgIqeB",