Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

phonegap-soundwave

Package Overview
Dependencies
Maintainers
1
Versions
13
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

phonegap-soundwave - npm Package Compare versions

Comparing version 0.5.1 to 0.5.2

2

lib/middleware/autoreload.js

@@ -21,3 +21,3 @@ /*!

var outdated = false,
watches = [ path.join(process.cwd(), 'www/*') ];
watches = [ path.join(process.cwd(), 'www/**/*') ];

@@ -24,0 +24,0 @@ // optional options parameter

{
"name": "phonegap-soundwave",
"description": "Connect middleware to stream a PhoneGap app.",
"version": "0.5.1",
"version": "0.5.2",
"homepage": "https://github.com/phonegap/node-phonegap-soundwave",

@@ -6,0 +6,0 @@ "repository": {

@@ -13,4 +13,6 @@ <script type="text/javascript">

if (this.readyState === 4 && /^[2]/.test(this.status)) {
var reload = JSON.parse(this.responseText).reload;
if (reload) window.location.reload();
var response = JSON.parse(this.responseText);
if (response.outdated) {
window.location.reload();
}
}

@@ -21,5 +23,5 @@ }

setInterval(checkForReload, 1000*5);
setInterval(checkForReload, 1000 * 3);
})(window);
</script>
</script>
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