gatsby-matrix-theme 52.0.33 → 52.0.35

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,21 @@
1
+ ## [52.0.35](https://gitlab.com/g2m-gentoo/team-floyd/themes/matrix-theme/compare/v52.0.34...v52.0.35) (2024-11-13)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * update version ([bfcc199](https://gitlab.com/g2m-gentoo/team-floyd/themes/matrix-theme/commit/bfcc19908f8ffa1942ebe5ffed31cda9b1979474))
7
+ * update version ([eff62ef](https://gitlab.com/g2m-gentoo/team-floyd/themes/matrix-theme/commit/eff62ef545546253ff4066b1c19f09695efe4cc3))
8
+
9
+ ## [52.0.34](https://gitlab.com/g2m-gentoo/team-floyd/themes/matrix-theme/compare/v52.0.33...v52.0.34) (2024-11-12)
10
+
11
+
12
+ ### Bug Fixes
13
+
14
+ * update schema helper ([6ae119c](https://gitlab.com/g2m-gentoo/team-floyd/themes/matrix-theme/commit/6ae119cbaabf3d326e2ed461ff3eb7807982131a))
15
+
16
+
17
+ * Merge branch 'tm-4917-remove-schemas-from-tracker-links' into 'master' ([771368e](https://gitlab.com/g2m-gentoo/team-floyd/themes/matrix-theme/commit/771368e3946d13c81366b9a3615fa57672bde2fd))
18
+
1
19
  ## [52.0.33](https://gitlab.com/g2m-gentoo/team-floyd/themes/matrix-theme/compare/v52.0.32...v52.0.33) (2024-11-12)
2
20
 
3
21
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gatsby-matrix-theme",
3
- "version": "52.0.33",
3
+ "version": "52.0.35",
4
4
  "main": "index.js",
5
5
  "description": "Matrix Theme NPM Package",
6
6
  "author": "",
@@ -25,7 +25,7 @@
25
25
  "dependencies": {
26
26
  "@react-icons/all-files": "^4.1.0",
27
27
  "gatsby": "^5.11.0",
28
- "gatsby-core-theme": "40.0.30",
28
+ "gatsby-core-theme": "40.0.33",
29
29
  "gatsby-plugin-sharp": "^5.11.0",
30
30
  "gatsby-transformer-sharp": "^5.11.0",
31
31
  "gatsby-plugin-sitemap": "^6.13.1",
@@ -45,6 +45,7 @@ const knowsAbout = [
45
45
  export function schemaGenerator(page = {}, pageImage) {
46
46
  const isNSA = process.env.GATSBY_SITE_NAME === 'norskespilleautomater.com';
47
47
  const isHomepage = page.path === '/';
48
+ const tracker = page?.template === 'tracker';
48
49
  if (isNSA) {
49
50
  page.knowsAbout = knowsAbout;
50
51
  }
@@ -57,8 +58,8 @@ export function schemaGenerator(page = {}, pageImage) {
57
58
  // Page Schema
58
59
  page.seo_json_schema,
59
60
  // Breadcrumbs Schema
60
- !isHomepage ? breadcrumbsSchema(page) : null,
61
- hasWebPageSchema ? webPageSchema(page, pageImage) : null,
61
+ !isHomepage && !tracker ? breadcrumbsSchema(page) : null,
62
+ hasWebPageSchema && !tracker ? webPageSchema(page, pageImage) : null,
62
63
  hasOrganisationSchema ? organizationSchema(page, pageImage) : null,
63
64
  templateSchemas(page, pageImage),
64
65
  // Modules Schemas