Socket
Socket
Sign inDemoInstall

metro-cache

Package Overview
Dependencies
Maintainers
2
Versions
143
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.78.0 to 0.78.1

6

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

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

"dependencies": {
"metro-core": "0.78.0",
"metro-core": "0.78.1",
"rimraf": "^3.0.2"
},
"devDependencies": {
"metro-memory-fs": "0.78.0"
"metro-memory-fs": "0.78.1"
},

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

@@ -23,4 +23,4 @@ /**

get(key: Buffer): Promise<T | null>;
set(key: Buffer, value: T): void;
set(key: Buffer, value: T): Promise<void>;
get isDisabled(): boolean;
}

@@ -66,3 +66,3 @@ /**

}
set(key, value) {
async set(key, value) {
const stores = this._stores;

@@ -83,7 +83,3 @@ const stop = this._hits.get(key);

}
Promise.all(promises).catch((err) => {
process.nextTick(() => {
throw err;
});
});
await Promise.all(promises);
}

@@ -90,0 +86,0 @@

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