@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.
@@ -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 = {};
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": "1.19.1",
4
+ "version": "1.19.2",
5
5
  "author": "Salesforce",
6
6
  "bugs": "https://github.com/oclif/core/issues",
7
7
  "dependencies": {