@nuxtjs/pwa
Advanced tools
Comparing version 3.3.0 to 3.3.1
@@ -5,2 +5,9 @@ # Changelog | ||
### [3.3.1](https://github.com/nuxt-community/pwa-module/compare/v3.3.0...v3.3.1) (2020-11-29) | ||
### Bug Fixes | ||
* append to start_url without query param (fixes [#403](https://github.com/nuxt-community/pwa-module/issues/403)) ([054b8a2](https://github.com/nuxt-community/pwa-module/commit/054b8a299274fafc61275b50374b4eb1e83e7e46)) | ||
## [3.3.0](https://github.com/nuxt-community/pwa-module/compare/v3.2.2...v3.3.0) (2020-11-28) | ||
@@ -7,0 +14,0 @@ |
@@ -18,3 +18,3 @@ 'use strict'; | ||
var name = "@nuxtjs/pwa"; | ||
var version = "3.2.2"; | ||
var version = "3.3.0"; | ||
@@ -640,3 +640,8 @@ const PKG = { | ||
if (pwa.manifest && pwa.manifest.start_url) { | ||
pwa.manifest.start_url += "&revision=" + options.cacheOptions.revision; | ||
const r = "revision=" + options.cacheOptions.revision; | ||
if (pwa.manifest.start_url.includes("?")) { | ||
pwa.manifest.start_url += "&" + r; | ||
} else { | ||
pwa.manifest.start_url += "?" + r; | ||
} | ||
options.preCaching.unshift(...normalizePreCaching(pwa.manifest.start_url)); | ||
@@ -643,0 +648,0 @@ } |
{ | ||
"name": "@nuxtjs/pwa", | ||
"version": "3.3.0", | ||
"version": "3.3.1", | ||
"description": "Zero config PWA solution for Nuxt.js", | ||
@@ -5,0 +5,0 @@ "repository": "nuxt-community/pwa-module", |
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
101269
1356
1