@oclif/core 2.1.5 → 2.1.7
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/lib/config/config.js +1 -1
- package/package.json +4 -4
package/lib/config/config.js
CHANGED
|
@@ -551,7 +551,7 @@ class Config {
|
|
|
551
551
|
for (const alias of command.aliases ?? []) {
|
|
552
552
|
if (this._commands.has(alias)) {
|
|
553
553
|
const prioritizedCommand = this.determinePriority([this._commands.get(alias), command]);
|
|
554
|
-
this._commands.set(
|
|
554
|
+
this._commands.set(alias, { ...prioritizedCommand, id: alias });
|
|
555
555
|
}
|
|
556
556
|
else {
|
|
557
557
|
this._commands.set(alias, { ...command, id: alias });
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@oclif/core",
|
|
3
3
|
"description": "base library for oclif CLIs",
|
|
4
|
-
"version": "2.1.
|
|
4
|
+
"version": "2.1.7",
|
|
5
5
|
"author": "Salesforce",
|
|
6
6
|
"bugs": "https://github.com/oclif/core/issues",
|
|
7
7
|
"dependencies": {
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
"clean-stack": "^3.0.1",
|
|
14
14
|
"cli-progress": "^3.11.2",
|
|
15
15
|
"debug": "^4.3.4",
|
|
16
|
-
"ejs": "^3.1.
|
|
16
|
+
"ejs": "^3.1.8",
|
|
17
17
|
"fs-extra": "^9.1.0",
|
|
18
18
|
"get-package-type": "^0.1.0",
|
|
19
19
|
"globby": "^11.1.0",
|
|
@@ -38,12 +38,12 @@
|
|
|
38
38
|
"@commitlint/config-conventional": "^12.1.4",
|
|
39
39
|
"@oclif/plugin-help": "^5.2.4",
|
|
40
40
|
"@oclif/plugin-plugins": "^2.3.2",
|
|
41
|
-
"@oclif/test": "^2.3.
|
|
41
|
+
"@oclif/test": "^2.3.6",
|
|
42
42
|
"@types/ansi-styles": "^3.2.1",
|
|
43
43
|
"@types/chai": "^4.3.4",
|
|
44
44
|
"@types/chai-as-promised": "^7.1.5",
|
|
45
45
|
"@types/clean-stack": "^2.1.1",
|
|
46
|
-
"@types/ejs": "^3.1.
|
|
46
|
+
"@types/ejs": "^3.1.2",
|
|
47
47
|
"@types/fs-extra": "^9.0.13",
|
|
48
48
|
"@types/indent-string": "^4.0.1",
|
|
49
49
|
"@types/js-yaml": "^3.12.7",
|