Socket
Socket
Sign inDemoInstall

node-gyp-build

Package Overview
Dependencies
0
Maintainers
2
Versions
36
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 4.3.0 to 4.4.0

7

index.js

@@ -11,3 +11,4 @@ var fs = require('fs')

var abi = process.versions.modules // TODO: support old node where this is undef
var runtime = isElectron() ? 'electron' : 'node'
var runtime = isElectron() ? 'electron' : (isNwjs() ? 'node-webkit' : 'node')
var arch = os.arch()

@@ -186,2 +187,6 @@ var platform = os.platform()

function isNwjs () {
return !!(process.versions && process.versions.nw)
}
function isElectron () {

@@ -188,0 +193,0 @@ if (process.versions && process.versions.electron) return true

2

package.json
{
"name": "node-gyp-build",
"version": "4.3.0",
"version": "4.4.0",
"description": "Build tool and bindings loader for node-gyp that supports prebuilds",

@@ -5,0 +5,0 @@ "main": "index.js",

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