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

prebuild

Package Overview
Dependencies
Maintainers
4
Versions
117
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

prebuild - npm Package Compare versions

Comparing version 11.0.1 to 11.0.2

1

help.txt

@@ -5,2 +5,3 @@ prebuild [options]

--runtime -r runtime (Node runtime [node, napi, electron or node-webkit] to build or install for, default is node)
--arch -a arch (architecture to build or install for [default: process.arch])
--all (prebuild for all known abi versions)

@@ -7,0 +8,0 @@ --upload -u [gh-token] (upload prebuilds to github)

4

package.json
{
"name": "prebuild",
"version": "11.0.1",
"version": "11.0.2",
"description": "A command line tool for easily making prebuilt binaries for multiple versions of node, electron or node-webkit on a specific platform",

@@ -25,3 +25,3 @@ "scripts": {

"cmake-js": "~5.2.0",
"detect-libc": "^1.0.3",
"detect-libc": "^2.0.0",
"each-series-async": "^1.0.1",

@@ -28,0 +28,0 @@ "execspawn": "^1.0.1",

@@ -6,3 +6,3 @@ var minimist = require('minimist')

var libc = process.env.LIBC || (detectLibc.isNonGlibcLinux && detectLibc.family) || ''
var libc = process.env.LIBC || (detectLibc.isNonGlibcLinuxSync() && detectLibc.familySync()) || ''

@@ -9,0 +9,0 @@ var rc = require('rc')('prebuild', {

@@ -151,5 +151,5 @@ # prebuild

In the absence of a need to compile against a specific Node-API version, the value `3` is a good choice as this is the Node-API version that was supported when Node-API left experimental status.
In the absence of a need to compile against a specific Node-API version, the value `3` is a good choice as this is the Node-API version that was supported when Node-API left experimental status.
Modules that are built against a specific Node-API version will continue to operate indefinitely, even as later versions of Node-API are introduced.
Modules that are built against a specific Node-API version will continue to operate indefinitely, even as later versions of Node-API are introduced.

@@ -160,3 +160,3 @@ ### Defining the `NAPI_VERSION` Value

`prebuild` supports two build backends: [`node-gyp`](https://github.com/nodejs/node-gyp) and [`cmake-js`](https://github.com/cmake-js/cmake-js). The `NAPI_VERSION` value is configured differently for each backend.
`prebuild` supports two build backends: [`node-gyp`](https://github.com/nodejs/node-gyp) and [`cmake-js`](https://github.com/cmake-js/cmake-js). The `NAPI_VERSION` value is configured differently for each backend.

@@ -185,5 +185,5 @@ #### node-gyp

One or more `--target` arguments may be specified to request builds for specific Node-API versions. Node-API versions are positive integer values. Alternatively, `--all` may be used to request builds for all Node-API versions supported by the module.
One or more `--target` arguments may be specified to request builds for specific Node-API versions. Node-API versions are positive integer values. Alternatively, `--all` may be used to request builds for all Node-API versions supported by the module.
In the absence of both `--target` and `--all` arguments, `prebuild` will build the most current version of the module supported by the Node instance performing the build.
In the absence of both `--target` and `--all` arguments, `prebuild` will build the most current version of the module supported by the Node instance performing the build.

@@ -198,2 +198,3 @@ ## Help

--runtime -r runtime (Node runtime [node, napi, electron or node-webkit] to build or install for, default is node)
--arch -a arch (architecture to build or install for [default: process.arch])
--all (prebuild for all known abi versions)

@@ -200,0 +201,0 @@ --upload -u [gh-token] (upload prebuilds to github)

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