@oclif/core 1.19.1 → 1.19.2
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 +2 -1
- package/package.json +1 -1
package/lib/config/config.js
CHANGED
|
@@ -642,6 +642,7 @@ async function toCached(c, plugin) {
|
|
|
642
642
|
helpGroup: flag.helpGroup,
|
|
643
643
|
allowNo: flag.allowNo,
|
|
644
644
|
dependsOn: flag.dependsOn,
|
|
645
|
+
relationships: flag.relationships,
|
|
645
646
|
exclusive: flag.exclusive,
|
|
646
647
|
deprecated: flag.deprecated,
|
|
647
648
|
aliases: flag.aliases,
|
|
@@ -701,7 +702,7 @@ async function toCached(c, plugin) {
|
|
|
701
702
|
args,
|
|
702
703
|
};
|
|
703
704
|
// do not include these properties in manifest
|
|
704
|
-
const ignoreCommandProperties = ['plugin', '_flags'];
|
|
705
|
+
const ignoreCommandProperties = ['plugin', '_flags', '_enableJsonFlag', '_globalFlags'];
|
|
705
706
|
const stdKeys = Object.keys(stdProperties);
|
|
706
707
|
const keysToAdd = Object.keys(c).filter(property => ![...stdKeys, ...ignoreCommandProperties].includes(property));
|
|
707
708
|
const additionalProperties = {};
|