node-pre-gyp
Advanced tools
Comparing version 0.6.34 to 0.6.35
@@ -5,2 +5,5 @@ # node-pre-gyp changelog | ||
- No longer recommending `npm ls` in `prepublish` (#291) | ||
- Fixed testbinary command (#283) @szdavid92 | ||
- Added new node versions to crosswalk, including v8 | ||
- Upgraded deps to latest versions, started using `^` instead of `~` for all deps. | ||
@@ -7,0 +10,0 @@ |
@@ -65,3 +65,3 @@ "use strict"; | ||
args.push('--eval'); | ||
args.push("'require(\\'" + binary_module.replace(/\'/g, '\\\'') +"\\')'"); | ||
args.push("require('" + binary_module.replace(/'/g, '\'') +"')"); | ||
log.info("validate","Running test command: '" + shell_cmd + ' ' + args.join(' ') + "'"); | ||
@@ -68,0 +68,0 @@ cp.execFile(shell_cmd, args, options, function(err, stdout, stderr) { |
@@ -1238,2 +1238,14 @@ { | ||
}, | ||
"4.8.1": { | ||
"node_abi": 46, | ||
"v8": "4.5" | ||
}, | ||
"4.8.2": { | ||
"node_abi": 46, | ||
"v8": "4.5" | ||
}, | ||
"4.8.3": { | ||
"node_abi": 46, | ||
"v8": "4.5" | ||
}, | ||
"5.0.0": { | ||
@@ -1395,2 +1407,14 @@ "node_abi": 47, | ||
}, | ||
"6.10.1": { | ||
"node_abi": 48, | ||
"v8": "5.1" | ||
}, | ||
"6.10.2": { | ||
"node_abi": 48, | ||
"v8": "5.1" | ||
}, | ||
"6.10.3": { | ||
"node_abi": 48, | ||
"v8": "5.1" | ||
}, | ||
"7.0.0": { | ||
@@ -1443,3 +1467,23 @@ "node_abi": 51, | ||
"v8": "5.5" | ||
}, | ||
"7.7.4": { | ||
"node_abi": 51, | ||
"v8": "5.5" | ||
}, | ||
"7.8.0": { | ||
"node_abi": 51, | ||
"v8": "5.5" | ||
}, | ||
"7.9.0": { | ||
"node_abi": 51, | ||
"v8": "5.5" | ||
}, | ||
"7.10.0": { | ||
"node_abi": 51, | ||
"v8": "5.5" | ||
}, | ||
"8.0.0": { | ||
"node_abi": 57, | ||
"v8": "5.8" | ||
} | ||
} |
{ | ||
"name": "node-pre-gyp", | ||
"description": "Node.js native addon binary install tool", | ||
"version" : "0.6.34", | ||
"version" : "0.6.35", | ||
"keywords": [ | ||
@@ -48,3 +48,3 @@ "native", | ||
"scripts": { | ||
"prepublish": "retire -n && npm ls && jshint test/build.test.js test/s3_setup.test.js test/versioning.test.js", | ||
"pretest": "retire -n && jshint test/build.test.js test/s3_setup.test.js test/versioning.test.js", | ||
"update-crosswalk": "node scripts/abi_crosswalk.js", | ||
@@ -51,0 +51,0 @@ "test": "jshint lib lib/util scripts bin/node-pre-gyp && mocha -R spec --timeout 500000" |
@@ -111,3 +111,2 @@ # node-pre-gyp | ||
"scripts": { | ||
"prepublish": "npm ls" | ||
"install": "node-pre-gyp install --fallback-to-build" | ||
@@ -133,3 +132,3 @@ }, | ||
Note: in the past we recommended using `"preinstall": "npm install node-pre-gyp"` as an alternative method to avoid needing to bundle. But this does not behave predictably across all npm versions - see https://github.com/mapbox/node-pre-gyp/issues/260 for the details. So we do not recommend using `preinstall` to install `node-pre-gyp`. Instead we recommend bundling. | ||
Note: in the past we recommended using `"preinstall": "npm install node-pre-gyp"` as an alternative method to avoid needing to bundle. But this does not behave predictably across all npm versions - see https://github.com/mapbox/node-pre-gyp/issues/260 for the details. So we do not recommend using `preinstall` to install `node-pre-gyp`. Instead we recommend bundling. More history on this at https://github.com/strongloop/fsevents/issues/157#issuecomment-265545908. | ||
@@ -136,0 +135,0 @@ ##### The `binary` object has three required properties |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
123730
32
2803
586