Socket
Socket
Sign inDemoInstall

metro-cache

Package Overview
Dependencies
Maintainers
2
Versions
142
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

metro-cache - npm Package Compare versions

Comparing version 0.80.1 to 0.80.2

6

package.json
{
"name": "metro-cache",
"version": "0.80.1",
"version": "0.80.2",
"description": "🚇 Cache layers for Metro.",

@@ -15,7 +15,7 @@ "main": "src/index.js",

"dependencies": {
"metro-core": "0.80.1",
"metro-core": "0.80.2",
"rimraf": "^3.0.2"
},
"devDependencies": {
"metro-memory-fs": "0.80.1"
"metro-memory-fs": "0.80.2"
},

@@ -22,0 +22,0 @@ "license": "MIT",

@@ -45,3 +45,8 @@ /**

);
Logger.createEntry(`CACHE_ERROR: ${err.message} (${err.code})`);
Logger.log(
Logger.createEntry({
action_name: "HttpGetStore:Warning",
log_entry_label: `${err.message} (${err.code})`,
})
);
this._warned = true;

@@ -48,0 +53,0 @@ }

@@ -110,2 +110,5 @@ /**

});
req.on("timeout", () => {
req.destroy(new Error("Request timed out"));
});
req.end();

@@ -146,2 +149,5 @@ });

});
req.on("timeout", () => {
req.destroy(new Error("Request timed out"));
});
gzip.pipe(req);

@@ -148,0 +154,0 @@ if (value instanceof Buffer) {

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

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