@quintype/seo 1.41.5-description-fallback.0 → 1.41.5-description-fallback.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
@@ -1227,7 +1227,7 @@ const SKIP_CANONICAL = "__SKIP__CANONICAL__";
1227
1227
  * @param {boolean} seoConfig.enableOgTags Add og tags for Facebook
1228
1228
  * @param {boolean} seoConfig.enableTwitterCards Add twitter tags
1229
1229
  * @param {boolean} seoConfig.enableNews Add tags for Google News, like news_keywords
1230
- * @param {boolean} seoConfig.enableMetaDescriptionsFallback Add extra fallbacks for meta description, og:description and twitter:description
1230
+ * @param {boolean} seoConfig.enableMetaDescriptionFallback Add extra fallbacks for meta description, og:description and twitter:description
1231
1231
  * @param {Object} seoConfig.customTags Add tags for a custom page type. Usually looks like `{"custom-page": {"title": "value", "canonicalUrl": "value"}}`
1232
1232
  * @param {...*} params See {@link Generator} for other Parameters
1233
1233
  */
@@ -1363,7 +1363,7 @@ class MetaTagList {
1363
1363
  * enableNewsArticle: true
1364
1364
  * },
1365
1365
  * ampStoryPages: true,
1366
- * enableMetaDescriptionsFallback: true
1366
+ * enableMetaDescriptionFallback: true
1367
1367
  * });
1368
1368
  * ```
1369
1369
  */
package/index.js CHANGED
@@ -94,7 +94,7 @@ export class MetaTagList {
94
94
  * enableNewsArticle: true
95
95
  * },
96
96
  * ampStoryPages: true,
97
- * enableMetaDescriptionsFallback: true
97
+ * enableMetaDescriptionFallback: true
98
98
  * });
99
99
  * ```
100
100
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quintype/seo",
3
- "version": "1.41.5-description-fallback.0",
3
+ "version": "1.41.5-description-fallback.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",
package/src/text-tags.js CHANGED
@@ -314,7 +314,7 @@ const SKIP_CANONICAL = "__SKIP__CANONICAL__";
314
314
  * @param {boolean} seoConfig.enableOgTags Add og tags for Facebook
315
315
  * @param {boolean} seoConfig.enableTwitterCards Add twitter tags
316
316
  * @param {boolean} seoConfig.enableNews Add tags for Google News, like news_keywords
317
- * @param {boolean} seoConfig.enableMetaDescriptionsFallback Add extra fallbacks for meta description, og:description and twitter:description
317
+ * @param {boolean} seoConfig.enableMetaDescriptionFallback Add extra fallbacks for meta description, og:description and twitter:description
318
318
  * @param {Object} seoConfig.customTags Add tags for a custom page type. Usually looks like `{"custom-page": {"title": "value", "canonicalUrl": "value"}}`
319
319
  * @param {...*} params See {@link Generator} for other Parameters
320
320
  */