Socket
Socket
Sign inDemoInstall

node-gyp

Package Overview
Dependencies
Maintainers
1
Versions
145
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

node-gyp - npm Package Compare versions

Comparing version 0.1.3 to 0.1.4

3

bin/node-gyp.js

@@ -55,5 +55,2 @@ #!/usr/bin/env node

.reset().write(inspect(args) + '\n')
proc.stdout.pipe(process.stdout, { end: false })
proc.stderr.pipe(process.stderr, { end: false })
})

@@ -60,0 +57,0 @@

2

lib/build.js

@@ -41,3 +41,3 @@

}
gyp.verbose('`which` succeeded' + command, execPath)
gyp.verbose('`which` succeeded for `' + command + '`', execPath)
build()

@@ -44,0 +44,0 @@ })

@@ -33,2 +33,6 @@

}
if (process.platform == 'solaris') {
// Remoge the 'gyp-sun-tool' on Solaris
targets.push('gyp-sun-tool')
}
if (process.platform == 'darwin') {

@@ -35,0 +39,0 @@ // Remoge the 'gyp-mac-tool' on Darwin

@@ -83,5 +83,9 @@

proto.spawn = function spawn () {
var cp = child_process.spawn.apply(child_process, arguments)
this.emit('spawn', arguments[0], arguments[1], cp)
proto.spawn = function spawn (command, args, opts) {
opts || (opts = {})
if (!opts.silent && !opts.customFds) {
opts.customFds = [ 0, 1, 2 ]
}
var cp = child_process.spawn(command, args, opts)
this.emit('spawn', command, args, cp)
return cp

@@ -88,0 +92,0 @@ }

{ "name": "node-gyp"
, "description": "Node.js native addon build tool"
, "keywords": [ "native", "addon", "module", "c", "c++", "bindings", "gyp" ]
, "version": "0.1.3"
, "version": "0.1.4"
, "author": "Nathan Rajlich <nathan@tootallnate.net> (http://tootallnate.net)"

@@ -6,0 +6,0 @@ , "repository": { "type": "git", "url": "git://github.com/TooTallNate/node-gyp.git" }

@@ -26,3 +26,3 @@ node-gyp

To install with `npm`, invoke:
You can install with `npm`:

@@ -52,5 +52,4 @@ ``` bash

From here, you can invoke the `node-gyp` executable. The next step is to generate
the appropriate project build files for the current platform. Use `configure` for
that:
The next step is to generate the appropriate project build files for the current
platform. Use `configure` for that:

@@ -57,0 +56,0 @@ ``` bash

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