Skip to content

Commit 98f1f5f

Browse files
committedJun 19, 2023
deps: nopt@7.2.0
1 parent 8710ff8 commit 98f1f5f

File tree

8 files changed

+179
-159
lines changed

8 files changed

+179
-159
lines changed
 

‎node_modules/nopt/bin/nopt.js

+7-34
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
#!/usr/bin/env node
2-
var nopt = require('../lib/nopt')
3-
var path = require('path')
4-
var types = { num: Number,
2+
const nopt = require('../lib/nopt')
3+
const path = require('path')
4+
console.log('parsed', nopt({
5+
num: Number,
56
bool: Boolean,
67
help: Boolean,
78
list: Array,
@@ -13,8 +14,8 @@ var types = { num: Number,
1314
config: Boolean,
1415
length: Number,
1516
file: path,
16-
}
17-
var shorthands = { s: ['--str', 'astring'],
17+
}, {
18+
s: ['--str', 'astring'],
1819
b: ['--bool'],
1920
nb: ['--no-bool'],
2021
tft: ['--bool-list', '--no-bool-list', '--bool-list', 'true'],
@@ -25,32 +26,4 @@ var shorthands = { s: ['--str', 'astring'],
2526
c: ['--config'],
2627
l: ['--length'],
2728
f: ['--file'],
28-
}
29-
var parsed = nopt(types
30-
, shorthands
31-
, process.argv
32-
, 2)
33-
34-
console.log('parsed', parsed)
35-
36-
if (parsed.help) {
37-
console.log('')
38-
console.log('nopt cli tester')
39-
console.log('')
40-
console.log('types')
41-
console.log(Object.keys(types).map(function M (t) {
42-
var type = types[t]
43-
if (Array.isArray(type)) {
44-
return [t, type.map(function (mappedType) {
45-
return mappedType.name
46-
})]
47-
}
48-
return [t, type && type.name]
49-
}).reduce(function (s, i) {
50-
s[i[0]] = i[1]
51-
return s
52-
}, {}))
53-
console.log('')
54-
console.log('shorthands')
55-
console.log(shorthands)
56-
}
29+
}, process.argv, 2))

‎node_modules/nopt/lib/debug.js

+2-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
11
/* istanbul ignore next */
22
module.exports = process.env.DEBUG_NOPT || process.env.NOPT_DEBUG
3-
? function () {
4-
console.error.apply(console, arguments)
5-
}
6-
: function () {}
3+
? (...a) => console.error(...a)
4+
: () => {}

‎node_modules/nopt/lib/nopt-lib.js

+150-99
Large diffs are not rendered by default.

‎node_modules/nopt/lib/nopt.js

+3-3
Original file line numberDiff line numberDiff line change

‎node_modules/nopt/lib/type-defs.js

+8-8
Original file line numberDiff line numberDiff line change

‎node_modules/nopt/package.json

+4-6
Original file line numberDiff line numberDiff line change

‎package-lock.json

+4-4
Original file line numberDiff line numberDiff line change

‎package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@
9191
"minipass-pipeline": "^1.2.4",
9292
"ms": "^2.1.2",
9393
"node-gyp": "^9.4.0",
94-
"nopt": "^7.1.0",
94+
"nopt": "^7.2.0",
9595
"npm-audit-report": "^5.0.0",
9696
"npm-install-checks": "^6.1.1",
9797
"npm-package-arg": "^10.1.0",

0 commit comments

Comments
 (0)
Please sign in to comment.