@quintype/seo 1.40.14-gsc-errors.0 → 1.40.14-gsc-errors.1

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/dist/index.cjs.js CHANGED
@@ -1292,7 +1292,7 @@ class SEO {
1292
1292
  */
1293
1293
  constructor(seoConfig = {}) {
1294
1294
  this.seoConfig = seoConfig;
1295
- this.generators = (seoConfig.generators || [TextTags, ImageTags, AuthorTags, StaticTags, StructuredDataTags]).concat(seoConfig.extraGenerators || []);
1295
+ this.generators = (seoConfig.generators || [TextTags, ImageTags, AuthorTags, StaticTags, StructuredDataTags, StoryAmpTags]).concat(seoConfig.extraGenerators || []);
1296
1296
  }
1297
1297
 
1298
1298
  getMetaTags(config, pageType, data, params = {}) {
package/index.js CHANGED
@@ -108,7 +108,7 @@ export class SEO {
108
108
  constructor(seoConfig = {}) {
109
109
  this.seoConfig = seoConfig;
110
110
  this.generators = (
111
- seoConfig.generators || [TextTags, ImageTags, AuthorTags, StaticTags, StructuredDataTags]
111
+ seoConfig.generators || [TextTags, ImageTags, AuthorTags, StaticTags, StructuredDataTags, StoryAmpTags]
112
112
  ).concat(seoConfig.extraGenerators || []);
113
113
  }
114
114
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quintype/seo",
3
- "version": "1.40.14-gsc-errors.0",
3
+ "version": "1.40.14-gsc-errors.1",
4
4
  "description": "SEO Modules for Quintype",
5
5
  "main": "dist/index.cjs.js",
6
6
  "repository": "https://github.com/quintype/quintype-node-seo",