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

v8-debug

Package Overview
Dependencies
Maintainers
1
Versions
36
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

v8-debug - npm Package Compare versions

Comparing version 0.6.2 to 0.7.0

build/debug/v0.6.2/node-v11-darwin-x64/debug.node

4

package.json
{
"name": "v8-debug",
"version": "0.6.2",
"version": "0.7.0",
"description": "v8 debugger extending API",

@@ -41,3 +41,3 @@ "homepage": "http://github.com/node-inspector/v8-debug",

"preinstall": "node -e 'process.exit(0)'",
"prepublish": "node tools/prepublish.js",
"prepublish": "node ./tools/prepublish.js",
"install": "node-pre-gyp install --fallback-to-build",

@@ -44,0 +44,0 @@ "rebuild": "node-pre-gyp rebuild",

@@ -1,1 +0,40 @@

process.exit(1);
if (process.env.CI) process.exit(0);
var extend = require('util')._extend;
var gyp = require('node-pre-gyp');
var versions = ['0.10.0', '0.12.0', '4.0.0', '5.0.0'];
var matrix = {
x64: ['win32', 'linux', 'darwin'],
ia32: ['win32']
};
var targets = [];
Object.keys(matrix).forEach(function(arch) {
matrix[arch].forEach(function(platform) {
versions.forEach(function(version) {
targets.push({
target: version,
target_platform: platform,
target_arch: arch
});
});
});
}, []);
iterate();
function iterate(err) {
if (err) {
console.log(err.message);
return process.exit(1);
}
var target = targets.pop();
if (!target) process.exit(0);
var prog = extend(new gyp.Run(), {opts: target});
prog.commands.install([], iterate);
}
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