@oclif/plugin-commands 2.2.8 → 2.2.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -2
- package/lib/commands/commands.js +1 -1
- package/oclif.manifest.json +1 -1
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -20,7 +20,7 @@ $ npm install -g @oclif/plugin-commands
|
|
|
20
20
|
$ oclif-example COMMAND
|
|
21
21
|
running command...
|
|
22
22
|
$ oclif-example (--version)
|
|
23
|
-
@oclif/plugin-commands/2.2.
|
|
23
|
+
@oclif/plugin-commands/2.2.10 linux-x64 node-v18.14.0
|
|
24
24
|
$ oclif-example --help [COMMAND]
|
|
25
25
|
USAGE
|
|
26
26
|
$ oclif-example COMMAND
|
|
@@ -61,5 +61,5 @@ DESCRIPTION
|
|
|
61
61
|
list all the commands
|
|
62
62
|
```
|
|
63
63
|
|
|
64
|
-
_See code: [src/commands/commands.ts](https://github.com/oclif/plugin-commands/blob/v2.2.
|
|
64
|
+
_See code: [src/commands/commands.ts](https://github.com/oclif/plugin-commands/blob/v2.2.10/src/commands/commands.ts)_
|
|
65
65
|
<!-- commandsstop -->
|
package/lib/commands/commands.js
CHANGED
|
@@ -41,7 +41,7 @@ class Commands extends core_1.Command {
|
|
|
41
41
|
// If Command classes have circular references, don't break the commands command.
|
|
42
42
|
return this.removeCycles(obj);
|
|
43
43
|
}));
|
|
44
|
-
return formatted;
|
|
44
|
+
return _.uniqBy(formatted, 'id');
|
|
45
45
|
}
|
|
46
46
|
if (flags.tree) {
|
|
47
47
|
const tree = (0, tree_1.default)(commands, this.config.topicSeparator);
|
package/oclif.manifest.json
CHANGED
package/package.json
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@oclif/plugin-commands",
|
|
3
3
|
"description": "plugin to show the list of all the commands",
|
|
4
|
-
"version": "2.2.
|
|
4
|
+
"version": "2.2.10",
|
|
5
5
|
"author": "Salesforce",
|
|
6
6
|
"bugs": "https://github.com/oclif/plugin-commands/issues",
|
|
7
7
|
"dependencies": {
|
|
8
|
-
"@oclif/core": "^2.1.
|
|
8
|
+
"@oclif/core": "^2.1.6",
|
|
9
9
|
"lodash": "^4.17.11"
|
|
10
10
|
},
|
|
11
11
|
"devDependencies": {
|
|
12
12
|
"@oclif/plugin-help": "^5.2.4",
|
|
13
|
-
"@oclif/test": "^2.3.
|
|
13
|
+
"@oclif/test": "^2.3.5",
|
|
14
14
|
"@types/chai": "^4.3.4",
|
|
15
15
|
"@types/lodash": "^4.14.191",
|
|
16
16
|
"@types/mocha": "^8.0.0",
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
"mocha": "^8",
|
|
25
25
|
"nock": "^13.3.0",
|
|
26
26
|
"nyc": "^15.1.0",
|
|
27
|
-
"oclif": "^3.6.
|
|
27
|
+
"oclif": "^3.6.3",
|
|
28
28
|
"shx": "^0.3.3",
|
|
29
29
|
"ts-node": "^9.1.1",
|
|
30
30
|
"tslib": "^2.5.0",
|