@nuxtjs/manifest
Advanced tools
Comparing version 2.1.0 to 2.3.0
@@ -6,2 +6,23 @@ # Change Log | ||
<a name="2.3.0"></a> | ||
# 2.3.0 (2018-08-24) | ||
### Bug Fixes | ||
* **docs:** add reference to pwa module ([49b7c49](https://github.com/nuxt-community/pwa-module/commit/49b7c49)) | ||
* **manifest:** run only on build ([ecaa835](https://github.com/nuxt-community/pwa-module/commit/ecaa835)) | ||
* workaround to fill meta with SPA and nuxt start ([a0fb908](https://github.com/nuxt-community/pwa-module/commit/a0fb908)) | ||
### Features | ||
* Add compatibility for nuxt 1.0.0 hooks ([c0efb1d](https://github.com/nuxt-community/pwa-module/commit/c0efb1d)) | ||
* **manifest:** allow overriding publicPath ([#19](https://github.com/nuxt-community/pwa-module/issues/19)) ([4e6782e](https://github.com/nuxt-community/pwa-module/commit/4e6782e)) | ||
* **manifest:** support crossorigin option ([#71](https://github.com/nuxt-community/pwa-module/issues/71)) ([ccb2c33](https://github.com/nuxt-community/pwa-module/commit/ccb2c33)) | ||
<a name="2.1.0"></a> | ||
@@ -8,0 +29,0 @@ # [2.1.0](https://github.com/nuxt-community/pwa-module/compare/@nuxtjs/manifest@2.0.1...@nuxtjs/manifest@2.1.0) (2017-12-07) |
@@ -75,3 +75,5 @@ const hash = require('hash-sum') | ||
if (!find(this.options.head.link, 'rel', 'manifest')) { | ||
this.options.head.link.push({ rel: 'manifest', href: fixUrl(`${manifest.publicPath}/${manifestFileName}`) }) | ||
const baseAttribute = { rel: 'manifest', href: fixUrl(`${manifest.publicPath}/${manifestFileName}`) } | ||
const attribute = manifest.crossorigin ? Object.assign({}, baseAttribute, { crossorigin: manifest.crossorigin }) : baseAttribute | ||
this.options.head.link.push(attribute) | ||
} else { | ||
@@ -78,0 +80,0 @@ console.warn('Manifest meta already provided!') |
{ | ||
"name": "@nuxtjs/manifest", | ||
"version": "2.1.0", | ||
"version": "2.3.0", | ||
"license": "MIT", | ||
@@ -12,3 +12,4 @@ "main": "index.js", | ||
"hash-sum": "^1.0.2" | ||
} | ||
}, | ||
"gitHead": "e493f3395a9de9380fb6e3a4f89f1b4a4fc9edb7" | ||
} |
10205
5
71