Socket
Socket
Sign inDemoInstall

node-pre-gyp

Package Overview
Dependencies
Maintainers
1
Versions
109
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

node-pre-gyp - npm Package Compare versions

Comparing version 0.5.5 to 0.5.6

5

CHANGELOG.md
# node-pre-gyp changelog
## 0.5.6
- Added support for versioning on the `name` value in `package.json` (#57).
- Moved to using streams for reading tarball when publishing (#52)
## 0.5.5

@@ -4,0 +9,0 @@

2

lib/publish.js

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

var s3_obj_opts = { ACL: config.acl,
Body: fs.readFileSync(tarball),
Body: fs.createReadStream(tarball),
Bucket: config.bucket,

@@ -44,0 +44,0 @@ Key: key_name

@@ -62,2 +62,5 @@

}
if (!package_json.name) {
missing.push('name');
}
if (!package_json.binary) {

@@ -120,3 +123,4 @@ missing.push('binary');

var opts = {
configuration: (options.debug === true) ? 'Debug' : 'Release'
name: package_json.name
, configuration: (options.debug === true) ? 'Debug' : 'Release'
, module_name: package_json.binary.module_name

@@ -123,0 +127,0 @@ , version: module_version.version

{
"name": "node-pre-gyp",
"description": "Node.js native addon binary install tool",
"version": "0.5.5",
"version": "0.5.6",
"keywords": [

@@ -6,0 +6,0 @@ "native",

@@ -131,3 +131,3 @@ # node-pre-gyp

It **is recommended** that you customize this property. This is an extra path to use for publishing and finding remote tarballs. The default value for `remote_path` is `""` meaning that if you do not provide it then all packages will be published at the base of the `host`. It is recommended to provide a value like `./{module_name}/v{version}` to help organize remote packages in the case that you choose to publish multiple node addons to the same `host`.
It **is recommended** that you customize this property. This is an extra path to use for publishing and finding remote tarballs. The default value for `remote_path` is `""` meaning that if you do not provide it then all packages will be published at the base of the `host`. It is recommended to provide a value like `./{name}/v{version}` to help organize remote packages in the case that you choose to publish multiple node addons to the same `host`.

@@ -134,0 +134,0 @@ Note: This property supports variables based on [Versioning](#versioning).

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