@nuxtjs/meta
Advanced tools
Comparing version 2.0.1 to 2.0.2
@@ -6,2 +6,13 @@ # Change Log | ||
<a name="2.0.2"></a> | ||
## [2.0.2](https://github.com/nuxt-community/pwa-module/compare/@nuxtjs/meta@2.0.1...@nuxtjs/meta@2.0.2) (2017-12-29) | ||
### Bug Fixes | ||
* **meta:** add unique identifiers to meta fields ([#23](https://github.com/nuxt-community/pwa-module/issues/23)) ([76a1f89](https://github.com/nuxt-community/pwa-module/commit/76a1f89)) | ||
<a name="2.0.1"></a> | ||
@@ -8,0 +19,0 @@ ## [2.0.1](https://github.com/nuxt-community/pwa-module/compare/@nuxtjs/meta@2.0.0...@nuxtjs/meta@2.0.1) (2017-11-17) |
20
index.js
@@ -52,3 +52,3 @@ const debug = require('debug')('nuxt:pwa') | ||
if (options.charset && !find(this.options.head.meta, 'charset')) { | ||
this.options.head.meta.push({ charset: options.charset }) | ||
this.options.head.meta.push({ hid: 'charset', charset: options.charset }) | ||
} | ||
@@ -58,3 +58,3 @@ | ||
if (options.viewport && !find(this.options.head.meta, 'name', 'viewport')) { | ||
this.options.head.meta.push({ name: 'viewport', content: options.viewport }) | ||
this.options.head.meta.push({ hid: 'viewport', name: 'viewport', content: options.viewport }) | ||
} | ||
@@ -64,3 +64,3 @@ | ||
if (options.mobileApp && !find(this.options.head.meta, 'name', 'mobile-web-app-capable')) { | ||
this.options.head.meta.push({ name: 'mobile-web-app-capable', content: 'yes' }) | ||
this.options.head.meta.push({ hid: 'mobile-web-app-capable', name: 'mobile-web-app-capable', content: 'yes' }) | ||
} | ||
@@ -70,3 +70,3 @@ | ||
if (options.mobileAppIOS && !find(this.options.head.meta, 'name', 'apple-mobile-web-app-capable')) { | ||
this.options.head.meta.push({ name: 'apple-mobile-web-app-capable', content: 'yes' }) | ||
this.options.head.meta.push({ hid: 'apple-mobile-web-app-capable', name: 'apple-mobile-web-app-capable', content: 'yes' }) | ||
} | ||
@@ -76,3 +76,3 @@ | ||
if (options.mobileAppIOS && options.appleStatusBarStyle && !find(this.options.head.meta, 'name', 'apple-mobile-web-app-status-bar-style')) { | ||
this.options.head.meta.push({ name: 'apple-mobile-web-app-status-bar-style', content: options.appleStatusBarStyle }) | ||
this.options.head.meta.push({ hid: 'apple-mobile-web-app-status-bar-style', name: 'apple-mobile-web-app-status-bar-style', content: options.appleStatusBarStyle }) | ||
} | ||
@@ -107,3 +107,3 @@ | ||
if (title && !find(this.options.head.meta, 'name', 'apple-mobile-web-app-title')) { | ||
this.options.head.meta.push({ name: 'apple-mobile-web-app-title', content: title }) | ||
this.options.head.meta.push({ hid: 'apple-mobile-web-app-title', name: 'apple-mobile-web-app-title', content: title }) | ||
} | ||
@@ -118,3 +118,3 @@ | ||
if (options.theme_color && !find(this.options.head.meta, 'name', 'theme-color')) { | ||
this.options.head.meta.push({ name: 'theme-color', content: options.theme_color }) | ||
this.options.head.meta.push({ hid: 'theme-color', name: 'theme-color', content: options.theme_color }) | ||
} | ||
@@ -132,3 +132,3 @@ | ||
if (options.ogType && !find(this.options.head.meta, 'property', 'og:type') && !find(this.options.head.meta, 'name', 'og:type')) { | ||
this.options.head.meta.push({ name: 'og:type', property: 'og:type', content: options.ogType }) | ||
this.options.head.meta.push({ hid: 'og:type', name: 'og:type', property: 'og:type', content: options.ogType }) | ||
} | ||
@@ -141,3 +141,3 @@ | ||
if (options.ogTitle && !find(this.options.head.meta, 'property', 'og:title') && !find(this.options.head.meta, 'name', 'og:title')) { | ||
this.options.head.meta.push({ name: 'og:title', property: 'og:title', content: options.ogTitle }) | ||
this.options.head.meta.push({ hid: 'og:title', name: 'og:title', property: 'og:title', content: options.ogTitle }) | ||
} | ||
@@ -150,3 +150,3 @@ | ||
if (options.ogDescription && !find(this.options.head.meta, 'property', 'og:description') && !find(this.options.head.meta, 'name', 'og:description')) { | ||
this.options.head.meta.push({ name: 'og:description', property: 'og:description', content: options.ogDescription }) | ||
this.options.head.meta.push({ hid: 'og:description', name: 'og:description', property: 'og:description', content: options.ogDescription }) | ||
} | ||
@@ -153,0 +153,0 @@ } |
{ | ||
"name": "@nuxtjs/meta", | ||
"version": "2.0.1", | ||
"version": "2.0.2", | ||
"license": "MIT", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
10095