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

electron-compile-cache

Package Overview
Dependencies
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

electron-compile-cache - npm Package Compare versions

Comparing version 0.5.0 to 0.6.0

4

lib/compile-cache.js

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

// If we're in node_modules, we're gonna punt
if (fullPath.match(/[\\\/]node_modules[\\\/]/i)) return false;
// If we're in node_modules or in Electron core code, we're gonna punt
if (fullPath.match(/[\\\/]node_modules[\\\/]/i) || fullPath.match(/[\\\/]atom\.asar/)) return false;

@@ -77,0 +77,0 @@ // NB: require() normally does this for us, but in our protocol hook we

{
"name": "electron-compile-cache",
"version": "0.5.0",
"version": "0.6.0",
"description": "Base class for compilers in electron-compile, use this to implement your own compiler",

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

@@ -39,4 +39,4 @@ import crypto from 'crypto';

// If we're in node_modules, we're gonna punt
if (fullPath.match(/[\\\/]node_modules[\\\/]/i)) return false;
// If we're in node_modules or in Electron core code, we're gonna punt
if (fullPath.match(/[\\\/]node_modules[\\\/]/i) || fullPath.match(/[\\\/]atom\.asar/)) return false;

@@ -43,0 +43,0 @@ // NB: require() normally does this for us, but in our protocol hook we

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