New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@nuxtjs/pwa

Package Overview
Dependencies
Maintainers
4
Versions
55
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@nuxtjs/pwa - npm Package Compare versions

Comparing version 3.3.0 to 3.3.1

7

CHANGELOG.md

@@ -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 @@

9

dist/pwa.js

@@ -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",

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc