Added custom log name
This commit is contained in:
11
node_modules/commander/CHANGELOG.md
generated
vendored
11
node_modules/commander/CHANGELOG.md
generated
vendored
@ -1,3 +1,14 @@
|
||||
2.20.3 / 2019-10-11
|
||||
==================
|
||||
|
||||
* Support Node.js 0.10 (Revert #1059)
|
||||
* Ran "npm unpublish commander@2.20.2". There is no 2.20.2.
|
||||
|
||||
2.20.1 / 2019-09-29
|
||||
==================
|
||||
|
||||
* Improve executable subcommand tracking
|
||||
* Update dev dependencies
|
||||
|
||||
2.20.0 / 2019-04-02
|
||||
==================
|
||||
|
2
node_modules/commander/index.js
generated
vendored
2
node_modules/commander/index.js
generated
vendored
@ -484,7 +484,7 @@ Command.prototype.parse = function(argv) {
|
||||
})[0];
|
||||
}
|
||||
|
||||
if (this._execs[name] && typeof this._execs[name] !== 'function') {
|
||||
if (this._execs[name] === true) {
|
||||
return this.executeSubCommand(argv, args, parsed.unknown);
|
||||
} else if (aliasCommand) {
|
||||
// is alias of a subCommand
|
||||
|
24
node_modules/commander/package.json
generated
vendored
24
node_modules/commander/package.json
generated
vendored
@ -1,8 +1,8 @@
|
||||
{
|
||||
"_from": "commander@^2.9.0",
|
||||
"_id": "commander@2.20.0",
|
||||
"_id": "commander@2.20.3",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha512-7j2y+40w61zy6YC2iRNpUe/NwhNyoXrYpHMrSunaMG64nRnaf96zO/KMQR4OyN/UnE5KLyEBnKHd4aG3rskjpQ==",
|
||||
"_integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==",
|
||||
"_location": "/commander",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
@ -19,10 +19,10 @@
|
||||
"/node-opus",
|
||||
"/stream-throttle"
|
||||
],
|
||||
"_resolved": "https://registry.npmjs.org/commander/-/commander-2.20.0.tgz",
|
||||
"_shasum": "d58bb2b5c1ee8f87b0d340027e9e94e222c5a422",
|
||||
"_resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz",
|
||||
"_shasum": "fd485e84c03eb4881c20722ba48035e8531aeb33",
|
||||
"_spec": "commander@^2.9.0",
|
||||
"_where": "/home/sergiu/linx-audio-simulator/node_modules/node-opus",
|
||||
"_where": "/home/safemobile/LINX/linx-simulator2/node_modules/node-opus",
|
||||
"author": {
|
||||
"name": "TJ Holowaychuk",
|
||||
"email": "tj@vision-media.ca"
|
||||
@ -35,13 +35,13 @@
|
||||
"deprecated": false,
|
||||
"description": "the complete solution for node.js command-line programs",
|
||||
"devDependencies": {
|
||||
"@types/node": "^10.11.3",
|
||||
"eslint": "^5.6.1",
|
||||
"@types/node": "^12.7.8",
|
||||
"eslint": "^6.4.0",
|
||||
"should": "^13.2.3",
|
||||
"sinon": "^6.3.4",
|
||||
"standard": "^12.0.1",
|
||||
"ts-node": "^7.0.1",
|
||||
"typescript": "^2.9.2"
|
||||
"sinon": "^7.5.0",
|
||||
"standard": "^14.3.1",
|
||||
"ts-node": "^8.4.1",
|
||||
"typescript": "^3.6.3"
|
||||
},
|
||||
"files": [
|
||||
"index.js",
|
||||
@ -67,5 +67,5 @@
|
||||
"test-typings": "tsc -p tsconfig.json"
|
||||
},
|
||||
"typings": "typings/index.d.ts",
|
||||
"version": "2.20.0"
|
||||
"version": "2.20.3"
|
||||
}
|
||||
|
Reference in New Issue
Block a user