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:
authorGar <gar+gh@danger.computer>2022-04-05 22:12:50 +0300
committerGar <wraithgar@github.com>2022-04-07 00:29:40 +0300
commit79fc706f9c389a17ba50dd8835223160b8b0c3fb (patch)
tree17e1c656aa1c136d65ca9148858e450d3fca44b6 /node_modules
parentad9936063f20829eb9d5358d056593883f17a57b (diff)
deps: bin-links@3.0.1
Diffstat (limited to 'node_modules')
-rw-r--r--node_modules/bin-links/lib/check-bin.js10
-rw-r--r--node_modules/bin-links/lib/get-paths.js19
-rw-r--r--node_modules/bin-links/lib/link-mans.js2
-rw-r--r--node_modules/bin-links/package.json27
-rw-r--r--node_modules/cmd-shim/lib/index.js (renamed from node_modules/cmd-shim/index.js)23
-rw-r--r--node_modules/cmd-shim/lib/to-batch-syntax.js78
-rw-r--r--node_modules/cmd-shim/package.json28
-rw-r--r--node_modules/read-cmd-shim/lib/index.js (renamed from node_modules/read-cmd-shim/index.js)12
-rw-r--r--node_modules/read-cmd-shim/package.json35
9 files changed, 131 insertions, 103 deletions
diff --git a/node_modules/bin-links/lib/check-bin.js b/node_modules/bin-links/lib/check-bin.js
index 8bbe45188..750a34fbb 100644
--- a/node_modules/bin-links/lib/check-bin.js
+++ b/node_modules/bin-links/lib/check-bin.js
@@ -57,18 +57,18 @@ const checkShim = async ({ target, path }) => {
target + '.cmd',
target + '.ps1',
]
- await Promise.all(shims.map(async target => {
- const current = await readCmdShim(target)
- .catch(er => handleReadCmdShimError({ er, target }))
+ await Promise.all(shims.map(async shim => {
+ const current = await readCmdShim(shim)
+ .catch(er => handleReadCmdShimError({ er, target: shim }))
if (!current) {
return
}
- const resolved = resolve(dirname(target), current.replace(/\\/g, '/'))
+ const resolved = resolve(dirname(shim), current.replace(/\\/g, '/'))
if (resolved.toLowerCase().indexOf(path.toLowerCase()) !== 0) {
- return failEEXIST({ target })
+ return failEEXIST({ target: shim })
}
}))
}
diff --git a/node_modules/bin-links/lib/get-paths.js b/node_modules/bin-links/lib/get-paths.js
index 631aef9f9..b93e6982d 100644
--- a/node_modules/bin-links/lib/get-paths.js
+++ b/node_modules/bin-links/lib/get-paths.js
@@ -3,7 +3,7 @@
// are present, then we can assume that they're associated.
const binTarget = require('./bin-target.js')
const manTarget = require('./man-target.js')
-const { resolve, basename } = require('path')
+const { resolve, basename, extname } = require('path')
const isWindows = require('./is-windows.js')
module.exports = ({ path, pkg, global, top }) => {
if (top && !global) {
@@ -27,23 +27,14 @@ module.exports = ({ path, pkg, global, top }) => {
const manSet = []
if (manTarg && pkg.man && Array.isArray(pkg.man) && pkg.man.length) {
for (const man of pkg.man) {
- const parseMan = man.match(/(.*\.([0-9]+)(\.gz)?)$/)
- // invalid entries invalidate the entire man set
- if (!parseMan) {
+ if (!/.\.[0-9]+(\.gz)?$/.test(man)) {
return binSet
}
- const stem = parseMan[1]
- const sxn = parseMan[2]
- const base = basename(stem)
- const absFrom = resolve(path, man)
+ const section = extname(basename(man, '.gz')).slice(1)
+ const base = basename(man)
- /* istanbul ignore if - should be impossible */
- if (absFrom.indexOf(path) !== 0) {
- return binSet
- }
-
- manSet.push(resolve(manTarg, 'man' + sxn, base))
+ manSet.push(resolve(manTarg, 'man' + section, base))
}
}
diff --git a/node_modules/bin-links/lib/link-mans.js b/node_modules/bin-links/lib/link-mans.js
index 54b17d1fc..656e179b6 100644
--- a/node_modules/bin-links/lib/link-mans.js
+++ b/node_modules/bin-links/lib/link-mans.js
@@ -11,7 +11,7 @@ const linkMans = ({ path, pkg, top, force }) => {
// break any links to c:\\blah or /foo/blah or ../blah
// and filter out duplicates
const set = [...new Set(pkg.man.map(man =>
- man ? join('/', man).replace(/\\|:/g, '/').substr(1) : null)
+ man ? join('/', man).replace(/\\|:/g, '/').slice(1) : null)
.filter(man => typeof man === 'string'))]
return Promise.all(set.map(man => {
diff --git a/node_modules/bin-links/package.json b/node_modules/bin-links/package.json
index 0325ab443..a86948de1 100644
--- a/node_modules/bin-links/package.json
+++ b/node_modules/bin-links/package.json
@@ -1,6 +1,6 @@
{
"name": "bin-links",
- "version": "3.0.0",
+ "version": "3.0.1",
"description": "JavaScript package binary linker",
"main": "./lib/index.js",
"scripts": {
@@ -9,14 +9,15 @@
"prepublishOnly": "git push origin --follow-tags",
"snap": "tap",
"test": "tap",
- "lint": "eslint '**/*.js'",
- "postlint": "npm-template-check",
+ "lint": "eslint \"**/*.js\"",
+ "postlint": "template-oss-check",
"lintfix": "npm run lint -- --fix",
- "posttest": "npm run lint"
+ "posttest": "npm run lint",
+ "template-oss-apply": "template-oss-apply --force"
},
"repository": {
"type": "git",
- "url": "git://github.com/npm/bin-links.git"
+ "url": "https://github.com/npm/bin-links.git"
},
"keywords": [
"npm",
@@ -25,15 +26,16 @@
],
"license": "ISC",
"dependencies": {
- "cmd-shim": "^4.0.1",
+ "cmd-shim": "^5.0.0",
"mkdirp-infer-owner": "^2.0.0",
"npm-normalize-package-bin": "^1.0.0",
- "read-cmd-shim": "^2.0.0",
+ "read-cmd-shim": "^3.0.0",
"rimraf": "^3.0.0",
"write-file-atomic": "^4.0.0"
},
"devDependencies": {
- "@npmcli/template-oss": "^2.5.0",
+ "@npmcli/eslint-config": "^3.0.1",
+ "@npmcli/template-oss": "3.2.2",
"mkdirp": "^1.0.3",
"require-inject": "^1.4.4",
"tap": "^15.0.10"
@@ -43,15 +45,16 @@
"coverage-map": "map.js"
},
"files": [
- "bin",
- "lib"
+ "bin/",
+ "lib/"
],
"engines": {
- "node": "^12.13.0 || ^14.15.0 || >=16"
+ "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
},
"author": "GitHub Inc.",
"templateOSS": {
+ "//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.",
"windowsCI": false,
- "version": "2.5.0"
+ "version": "3.2.2"
}
}
diff --git a/node_modules/cmd-shim/index.js b/node_modules/cmd-shim/lib/index.js
index 4a7614b2f..10494e58a 100644
--- a/node_modules/cmd-shim/index.js
+++ b/node_modules/cmd-shim/lib/index.js
@@ -8,7 +8,7 @@
// Write a binroot/pkg.bin + ".cmd" file that has this line in it:
// @<prog> <args...> %dp0%<target> %*
-const {promisify} = require('util')
+const { promisify } = require('util')
const fs = require('fs')
const writeFile = promisify(fs.writeFile)
const readFile = promisify(fs.readFile)
@@ -16,10 +16,10 @@ const chmod = promisify(fs.chmod)
const stat = promisify(fs.stat)
const unlink = promisify(fs.unlink)
-const {dirname, relative} = require('path')
+const { dirname, relative } = require('path')
const mkdir = require('mkdirp-infer-owner')
-const toBatchSyntax = require('./lib/to-batch-syntax')
-const shebangExpr = /^#\!\s*(?:\/usr\/bin\/env)?\s*([^ \t]+=[^ \t]+\s+)*\s*([^ \t]+)(.*)$/
+const toBatchSyntax = require('./to-batch-syntax')
+const shebangExpr = /^#!\s*(?:\/usr\/bin\/env\s*((?:[^ \t=]+=[^ \t=]+\s+)*))?([^ \t]+)(.*)$/
const cmdShimIfExists = (from, to) =>
stat(from).then(() => cmdShim(from, to), () => {})
@@ -47,14 +47,15 @@ const writeShim = (from, to) =>
.then(data => {
const firstLine = data.trim().split(/\r*\n/)[0]
const shebang = firstLine.match(shebangExpr)
- if (!shebang) return writeShim_(from, to)
+ if (!shebang) {
+ return writeShim_(from, to)
+ }
const vars = shebang[1] || ''
const prog = shebang[2]
const args = shebang[3] || ''
return writeShim_(from, to, prog, args, vars)
}, er => writeShim_(from, to))
-
const writeShim_ = (from, to, prog, args, variables) => {
let shTarget = relative(dirname(to), from)
let target = shTarget.split('/').join('\\')
@@ -94,8 +95,8 @@ const writeShim_ = (from, to, prog, args, variables) => {
let cmd
if (longProg) {
- shLongProg = shLongProg.trim();
- args = args.trim();
+ shLongProg = shLongProg.trim()
+ args = args.trim()
const variablesBatch = toBatchSyntax.convertToSetCommands(variables)
cmd = head
+ variablesBatch
@@ -110,7 +111,7 @@ const writeShim_ = (from, to, prog, args, variables) => {
// prevent "Terminate Batch Job? (Y/n)" message
// https://github.com/npm/cli/issues/969#issuecomment-737496588
+ 'endLocal & goto #_undefined_# 2>NUL || title %COMSPEC% & '
- + `"%_prog%" ${args} ${target} %*\r\n`
+ + `"%_prog%" ${args} ${target} %*\r\n`
} else {
cmd = `${head}${prog} ${args} ${target} %*\r\n`
}
@@ -128,7 +129,7 @@ const writeShim_ = (from, to, prog, args, variables) => {
// exec node "$basedir/node_modules/npm/bin/npm-cli.js" "$@"
// fi
- let sh = "#!/bin/sh\n"
+ let sh = '#!/bin/sh\n'
sh = sh
+ `basedir=$(dirname "$(echo "$0" | sed -e 's,\\\\,/,g')")\n`
@@ -182,7 +183,7 @@ const writeShim_ = (from, to, prog, args, variables) => {
+ '$basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent\n'
+ '\n'
+ '$exe=""\n'
- + 'if ($PSVersionTable.PSVersion -lt \"6.0\" -or $IsWindows) {\n'
+ + 'if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) {\n'
+ ' # Fix case when both the Windows and Linux builds of Node\n'
+ ' # are installed in the same directory\n'
+ ' $exe=".exe"\n'
diff --git a/node_modules/cmd-shim/lib/to-batch-syntax.js b/node_modules/cmd-shim/lib/to-batch-syntax.js
index f3f5ffa63..86a3f0140 100644
--- a/node_modules/cmd-shim/lib/to-batch-syntax.js
+++ b/node_modules/cmd-shim/lib/to-batch-syntax.js
@@ -2,50 +2,48 @@ exports.replaceDollarWithPercentPair = replaceDollarWithPercentPair
exports.convertToSetCommand = convertToSetCommand
exports.convertToSetCommands = convertToSetCommands
-function convertToSetCommand(key, value) {
- var line = ""
- key = key || ""
- key = key.trim()
- value = value || ""
- value = value.trim()
- if(key && value && value.length > 0) {
- line = "@SET " + key + "=" + replaceDollarWithPercentPair(value) + "\r\n"
- }
- return line
+function convertToSetCommand (key, value) {
+ var line = ''
+ key = key || ''
+ key = key.trim()
+ value = value || ''
+ value = value.trim()
+ if (key && value && value.length > 0) {
+ line = '@SET ' + key + '=' + replaceDollarWithPercentPair(value) + '\r\n'
+ }
+ return line
}
-function extractVariableValuePairs(declarations) {
- var pairs = {}
- declarations.map(function(declaration) {
- var split = declaration.split("=")
- pairs[split[0]]=split[1]
- })
- return pairs
+function extractVariableValuePairs (declarations) {
+ var pairs = {}
+ declarations.map(function (declaration) {
+ var split = declaration.split('=')
+ pairs[split[0]] = split[1]
+ })
+ return pairs
}
-function convertToSetCommands(variableString) {
- var variableValuePairs = extractVariableValuePairs(variableString.split(" "))
- var variableDeclarationsAsBatch = ""
- Object.keys(variableValuePairs).forEach(function (key) {
- variableDeclarationsAsBatch += convertToSetCommand(key, variableValuePairs[key])
- })
- return variableDeclarationsAsBatch
+function convertToSetCommands (variableString) {
+ var variableValuePairs = extractVariableValuePairs(variableString.split(' '))
+ var variableDeclarationsAsBatch = ''
+ Object.keys(variableValuePairs).forEach(function (key) {
+ variableDeclarationsAsBatch += convertToSetCommand(key, variableValuePairs[key])
+ })
+ return variableDeclarationsAsBatch
}
-function replaceDollarWithPercentPair(value) {
- var dollarExpressions = /\$\{?([^\$@#\?\- \t{}:]+)\}?/g
- var result = ""
- var startIndex = 0
- do {
- var match = dollarExpressions.exec(value)
- if(match) {
- var betweenMatches = value.substring(startIndex, match.index) || ""
- result += betweenMatches + "%" + match[1] + "%"
- startIndex = dollarExpressions.lastIndex
- }
- } while (dollarExpressions.lastIndex > 0)
- result += value.substr(startIndex)
- return result
+function replaceDollarWithPercentPair (value) {
+ var dollarExpressions = /\$\{?([^$@#?\- \t{}:]+)\}?/g
+ var result = ''
+ var startIndex = 0
+ do {
+ var match = dollarExpressions.exec(value)
+ if (match) {
+ var betweenMatches = value.substring(startIndex, match.index) || ''
+ result += betweenMatches + '%' + match[1] + '%'
+ startIndex = dollarExpressions.lastIndex
+ }
+ } while (dollarExpressions.lastIndex > 0)
+ result += value.slice(startIndex)
+ return result
}
-
-
diff --git a/node_modules/cmd-shim/package.json b/node_modules/cmd-shim/package.json
index 11e17c8fb..1bcbdc434 100644
--- a/node_modules/cmd-shim/package.json
+++ b/node_modules/cmd-shim/package.json
@@ -1,13 +1,19 @@
{
"name": "cmd-shim",
- "version": "4.1.0",
+ "version": "5.0.0",
"description": "Used in npm for command line application support",
"scripts": {
"test": "tap",
"snap": "tap",
"preversion": "npm test",
"postversion": "npm publish",
- "postpublish": "git push origin --follow-tags"
+ "postpublish": "git push origin --follow-tags",
+ "lint": "eslint \"**/*.js\"",
+ "postlint": "template-oss-check",
+ "template-oss-apply": "template-oss-apply --force",
+ "lintfix": "npm run lint -- --fix",
+ "prepublishOnly": "git push origin --follow-tags",
+ "posttest": "npm run lint"
},
"repository": {
"type": "git",
@@ -18,19 +24,27 @@
"mkdirp-infer-owner": "^2.0.0"
},
"devDependencies": {
- "rimraf": "~2.2.8",
- "tap": "^14.10.6"
+ "@npmcli/eslint-config": "^3.0.1",
+ "@npmcli/template-oss": "3.2.2",
+ "rimraf": "^3.0.2",
+ "tap": "^16.0.1"
},
"files": [
- "index.js",
- "lib"
+ "bin/",
+ "lib/"
],
+ "main": "lib/index.js",
"tap": {
"before": "test/00-setup.js",
"after": "test/zz-cleanup.js",
"check-coverage": true
},
"engines": {
- "node": ">=10"
+ "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
+ },
+ "author": "GitHub Inc.",
+ "templateOSS": {
+ "//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.",
+ "version": "3.2.2"
}
}
diff --git a/node_modules/read-cmd-shim/index.js b/node_modules/read-cmd-shim/lib/index.js
index 4ac050fc3..782d4c36d 100644
--- a/node_modules/read-cmd-shim/index.js
+++ b/node_modules/read-cmd-shim/lib/index.js
@@ -1,6 +1,6 @@
const fs = require('fs')
-const {promisify} = require('util')
-const {readFileSync} = fs
+const { promisify } = require('util')
+const { readFileSync } = fs
const readFile = promisify(fs.readFile)
const extractPath = (path, cmdshimContents) => {
@@ -53,7 +53,9 @@ const readCmdShim = path => {
Error.captureStackTrace(er, readCmdShim)
return readFile(path).then(contents => {
const destination = extractPath(path, contents.toString())
- if (destination) return destination
+ if (destination) {
+ return destination
+ }
return Promise.reject(notaShim(path, er))
}, readFileEr => Promise.reject(wrapError(readFileEr, er)))
}
@@ -61,7 +63,9 @@ const readCmdShim = path => {
const readCmdShimSync = path => {
const contents = readFileSync(path)
const destination = extractPath(path, contents.toString())
- if (!destination) throw notaShim(path)
+ if (!destination) {
+ throw notaShim(path)
+ }
return destination
}
diff --git a/node_modules/read-cmd-shim/package.json b/node_modules/read-cmd-shim/package.json
index 2a76dc3b1..fee454f01 100644
--- a/node_modules/read-cmd-shim/package.json
+++ b/node_modules/read-cmd-shim/package.json
@@ -1,29 +1,46 @@
{
"name": "read-cmd-shim",
- "version": "2.0.0",
+ "version": "3.0.0",
"description": "Figure out what a cmd-shim is pointing at. This acts as the equivalent of fs.readlink.",
- "main": "index.js",
+ "main": "lib/index.js",
"devDependencies": {
+ "@npmcli/eslint-config": "^3.0.1",
+ "@npmcli/template-oss": "3.2.2",
"cmd-shim": "^4.0.0",
"rimraf": "^3.0.0",
- "tap": "^14.10.6"
+ "tap": "^16.0.1"
},
"scripts": {
- "preversion": "npm t",
+ "preversion": "npm test",
"postversion": "npm publish",
- "prepublishOnly": "git push --follow-tags",
- "test": "tap"
+ "prepublishOnly": "git push origin --follow-tags",
+ "test": "tap",
+ "lint": "eslint \"**/*.js\"",
+ "postlint": "template-oss-check",
+ "template-oss-apply": "template-oss-apply --force",
+ "lintfix": "npm run lint -- --fix",
+ "snap": "tap",
+ "posttest": "npm run lint"
},
"tap": {
"check-coverage": true
},
"repository": {
"type": "git",
- "url": "git+https://github.com/npm/read-cmd-shim.git"
+ "url": "https://github.com/npm/read-cmd-shim.git"
},
"license": "ISC",
"homepage": "https://github.com/npm/read-cmd-shim#readme",
"files": [
- "index.js"
- ]
+ "bin/",
+ "lib/"
+ ],
+ "author": "GitHub Inc.",
+ "engines": {
+ "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
+ },
+ "templateOSS": {
+ "//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.",
+ "version": "3.2.2"
+ }
}