Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorisaacs <i@izs.me>2021-03-18 22:04:49 +0300
committerisaacs <i@izs.me>2021-03-18 22:04:49 +0300
commita8d0751e4b7c7d8b808c8a49f288fc7272f729b0 (patch)
tree4f75f24cdea5bf6335e2491f60e16735b7280332 /node_modules
parentaaafab83d0d0ef6f1ff213b19eb466d3e2c4765f (diff)
npm-pick-manifest@6.1.1
Diffstat (limited to 'node_modules')
-rw-r--r--node_modules/npm-pick-manifest/CHANGELOG.md6
-rw-r--r--node_modules/npm-pick-manifest/index.js4
-rw-r--r--node_modules/npm-pick-manifest/package.json19
3 files changed, 17 insertions, 12 deletions
diff --git a/node_modules/npm-pick-manifest/CHANGELOG.md b/node_modules/npm-pick-manifest/CHANGELOG.md
index a4ee13e92..c7170c565 100644
--- a/node_modules/npm-pick-manifest/CHANGELOG.md
+++ b/node_modules/npm-pick-manifest/CHANGELOG.md
@@ -1,6 +1,10 @@
# Changelog
-All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
+All notable changes to this project will be documented in this file.
+
+## [6.1.1](https://github.com/npm/npm-pick-manifest/compare/v6.0.0...v6.1.0) (2020-04-07)
+
+* normalize package bins in returned manifest
## [6.1.0](https://github.com/npm/npm-pick-manifest/compare/v6.0.0...v6.1.0) (2020-04-07)
diff --git a/node_modules/npm-pick-manifest/index.js b/node_modules/npm-pick-manifest/index.js
index 2b3ea6ffa..695450524 100644
--- a/node_modules/npm-pick-manifest/index.js
+++ b/node_modules/npm-pick-manifest/index.js
@@ -3,6 +3,7 @@
const npa = require('npm-package-arg')
const semver = require('semver')
const { checkEngine } = require('npm-install-checks')
+const normalizeBin = require('npm-normalize-package-bin')
const engineOk = (manifest, npmVersion, nodeVersion) => {
try {
@@ -183,7 +184,8 @@ const pickManifest = (packument, wanted, opts) => {
}
module.exports = (packument, wanted, opts = {}) => {
- const picked = pickManifest(packument, wanted, opts)
+ const mani = pickManifest(packument, wanted, opts)
+ const picked = mani && normalizeBin(mani)
const policyRestrictions = packument.policyRestrictions
const restricted = (policyRestrictions && policyRestrictions.versions) || {}
diff --git a/node_modules/npm-pick-manifest/package.json b/node_modules/npm-pick-manifest/package.json
index 805f5ac23..4b4866cbf 100644
--- a/node_modules/npm-pick-manifest/package.json
+++ b/node_modules/npm-pick-manifest/package.json
@@ -1,6 +1,6 @@
{
"name": "npm-pick-manifest",
- "version": "6.1.0",
+ "version": "6.1.1",
"description": "Resolves a matching manifest from a package metadata document according to standard npm semver resolution rules.",
"main": "index.js",
"files": [
@@ -9,12 +9,11 @@
"scripts": {
"coverage": "tap",
"lint": "standard",
- "postrelease": "npm publish",
+ "test": "tap",
"posttest": "npm run lint",
- "prepublishOnly": "git push --follow-tags",
- "prerelease": "npm t",
- "release": "standard-version -s",
- "test": "tap"
+ "preversion": "npm test",
+ "postversion": "npm publish",
+ "prepublishOnly": "git push origin --follow-tags"
},
"repository": "https://github.com/npm/npm-pick-manifest",
"keywords": [
@@ -30,13 +29,13 @@
"license": "ISC",
"dependencies": {
"npm-install-checks": "^4.0.0",
- "npm-package-arg": "^8.0.0",
- "semver": "^7.0.0"
+ "npm-normalize-package-bin": "^1.0.1",
+ "npm-package-arg": "^8.1.2",
+ "semver": "^7.3.4"
},
"devDependencies": {
"standard": "^14.3.1",
- "standard-version": "^7.0.1",
- "tap": "^14.10.2"
+ "tap": "^14.11.0"
},
"tap": {
"check-coverage": true