nuclide-prebuilt-libs
Advanced tools
Comparing version 0.5.1 to 0.5.2
{ | ||
"name": "ctags", | ||
"description": "A package for reading source code tag files prebuilt for Mac and Linux", | ||
"version": "0.2.3", | ||
"version": "0.0.0", | ||
"license": "SEE LICENSE IN LICENSE", | ||
@@ -17,11 +17,11 @@ "main": "lib/ctags.js", | ||
"nan": "^2.0.0", | ||
"node-pre-gyp": "^0.6.5" | ||
"node-pre-gyp": "^0.10.0" | ||
}, | ||
"binary": { | ||
"module_name": "ctags", | ||
"module_path": "./build/{module_name}-v{version}-{node_abi}-{platform}-{arch}/", | ||
"host": "", | ||
"package_name": "{module_name}-v{version}-{node_abi}-{platform}-{arch}.tar.gz" | ||
"module_path": "./build/{module_name}-{node_abi}-{platform}-{arch}/", | ||
"host": "localhost", | ||
"package_name": "{module_name}-{node_abi}-{platform}-{arch}.tar.gz" | ||
}, | ||
"private": true | ||
} |
@@ -9,3 +9,3 @@ 'use strict'; | ||
// ABI versions 49, 50, 53 are only for Electron. | ||
// Certain ABI versions are Electron-only. | ||
// https://github.com/electron/electron/issues/5851 | ||
@@ -26,2 +26,10 @@ var nodeAbi; | ||
break; | ||
case '57': | ||
// On Windows, we still need a custom build for Electron. | ||
// On other platforms, the same build works on both. | ||
if (process.platform === 'win32' && process.versions.electron) { | ||
nodeAbi = 'electron-v2.0'; | ||
break; | ||
} | ||
// intentional fallthrough | ||
default: | ||
@@ -33,3 +41,2 @@ nodeAbi = 'node-v' + process.versions.modules; | ||
.replace('{module_name}', pack.binary.module_name) | ||
.replace('{version}', pack.version) | ||
.replace('{node_abi}', nodeAbi) | ||
@@ -36,0 +43,0 @@ .replace('{platform}', process.platform) |
{ | ||
"name": "fuzzy-native", | ||
"version": "0.7.2", | ||
"version": "0.0.0", | ||
"description": "Native C++ implementation of a fuzzy string matcher.", | ||
@@ -25,11 +25,11 @@ "main": "lib/main.js", | ||
"nan": "^2.0.0", | ||
"node-pre-gyp": "^0.6.30" | ||
"node-pre-gyp": "^0.10.0" | ||
}, | ||
"binary": { | ||
"module_name": "fuzzy-native", | ||
"module_path": "./build/{module_name}-v{version}-{node_abi}-{platform}-{arch}/", | ||
"host": "", | ||
"package_name": "{module_name}-v{version}-{node_abi}-{platform}-{arch}.tar.gz" | ||
"module_path": "./build/{module_name}-{node_abi}-{platform}-{arch}/", | ||
"host": "localhost", | ||
"package_name": "{module_name}-{node_abi}-{platform}-{arch}.tar.gz" | ||
}, | ||
"private": true | ||
} |
@@ -5,3 +5,3 @@ { | ||
"description": "Bindings to native Mac/Linux/Windows password APIs", | ||
"version": "4.0.4", | ||
"version": "0.0.0", | ||
"license": "MIT", | ||
@@ -39,4 +39,3 @@ "repository": { | ||
"node-cpplint": "~0.1.5", | ||
"node-gyp": "^3.6.0", | ||
"node-pre-gyp": "^0.6.34" | ||
"node-pre-gyp": "^0.10.0" | ||
}, | ||
@@ -48,7 +47,7 @@ "dependencies": { | ||
"module_name": "keytar", | ||
"module_path": "./build/{module_name}-v{version}-{node_abi}-{platform}-{arch}/", | ||
"host": "", | ||
"package_name": "{module_name}-v{version}-{node_abi}-{platform}-{arch}.tar.gz" | ||
"module_path": "./build/{module_name}-{node_abi}-{platform}-{arch}/", | ||
"host": "localhost", | ||
"package_name": "{module_name}-{node_abi}-{platform}-{arch}.tar.gz" | ||
}, | ||
"private": true | ||
} |
{ | ||
"name": "nuclide-prebuilt-libs", | ||
"description": "Nuclide's binary dependencies prebuilt for various platforms", | ||
"version": "0.5.1", | ||
"version": "0.5.2", | ||
"keywords": [], | ||
@@ -26,3 +26,3 @@ "homepage": "https://nuclide.io/", | ||
"scripts": { | ||
"prepublish": "./prepublish.sh", | ||
"prepublishOnly": "./prepublish.sh", | ||
"test-ctags": "(cd ctags && npm install && npm run rebuild)", | ||
@@ -29,0 +29,0 @@ "test-fuzzy-native": "(cd fuzzy-native && npm install && npm run rebuild)", |
{ | ||
"name": "pty", | ||
"description": "Fork of Daniel Imms's fork of Christopher Jeffrey's pseudoterminals in Node.JS", | ||
"version": "0.1.4", | ||
"version": "0.0.0", | ||
"license": "MIT", | ||
@@ -22,3 +22,3 @@ "main": "./lib/index.js", | ||
"nan": "^2.5.0", | ||
"node-pre-gyp": "^0.6.34", | ||
"node-pre-gyp": "^0.10.0", | ||
"tslint": "^4.3.1", | ||
@@ -29,7 +29,7 @@ "typescript": "^2.1.4" | ||
"module_name": "pty", | ||
"module_path": "./build/{module_name}-v{version}-{node_abi}-{platform}-{arch}/", | ||
"host": "", | ||
"package_name": "{module_name}-v{version}-{node_abi}-{platform}-{arch}.tar.gz" | ||
"module_path": "./build/{module_name}-{node_abi}-{platform}-{arch}/", | ||
"host": "localhost", | ||
"package_name": "{module_name}-{node_abi}-{platform}-{arch}.tar.gz" | ||
}, | ||
"private": true | ||
} |
@@ -19,8 +19,7 @@ # nuclide-prebuilt-libs | ||
1. Bump the `version` in the sub-package you modified. (This is only for bookkeeping purposes). | ||
2. Run `npm version patch`. | ||
3. Push the base package version bump and release tag with `git push --follow-tags`. | ||
4. Wait for both Travis and AppVeyor to build and upload the release artifacts. | ||
5. To test your npm release: Run `./prepublish && npm pack` | ||
6. Run `npm publish`. | ||
1. Run `npm version patch`. | ||
2. Push the base package version bump and release tag with `git push --follow-tags`. | ||
3. Wait for both Travis and AppVeyor to build and upload the release artifacts. | ||
4. To test your npm release: Run `./prepublish && npm pack` | ||
5. Run `npm publish`. | ||
@@ -27,0 +26,0 @@ ## Things to know about sub-packages |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
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
Native code
Supply chain riskContains native code (e.g., compiled binaries or shared libraries). Including native code can obscure malicious behavior.
Found 48 instances 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
Native code
Supply chain riskContains native code (e.g., compiled binaries or shared libraries). Including native code can obscure malicious behavior.
Found 26 instances in 1 package
913
8070381
95
31
50