Socket
Socket
Sign inDemoInstall

v8-compile-cache

Package Overview
Dependencies
0
Maintainers
1
Versions
13
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 2.0.0 to 2.0.1

4

CHANGELOG.md
# `v8-module-cache` Changelog
## 2018-08-06, Version 2.0.1
* Support `require.resolve` options (added in Node v8.9.0).
## 2018-04-30, Version 2.0.0

@@ -4,0 +8,0 @@

2

package.json
{
"name": "v8-compile-cache",
"version": "2.0.0",
"version": "2.0.1",
"description": "Require hook for automatic V8 compile cache persistence",

@@ -5,0 +5,0 @@ "main": "v8-compile-cache.js",

@@ -161,4 +161,4 @@ 'use strict';

}
require.resolve = function(request) {
return Module._resolveFilename(request, mod);
require.resolve = function(request, options) {
return Module._resolveFilename(request, mod, false, options);
};

@@ -165,0 +165,0 @@ require.main = process.mainModule;

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc