@cenk1cenk2/oclif-common 3.1.0-beta.6 → 3.1.0-beta.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/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -650,7 +650,7 @@ var ConfigService = class {
|
|
|
650
650
|
const extras = [];
|
|
651
651
|
if ("__element" /* ELEMENT */ in value) {
|
|
652
652
|
this.logger.trace("Expanding location to elements: %s", location);
|
|
653
|
-
extras.push(await iter(value["__element" /* ELEMENT */], [...location, "__element" /* ELEMENT */]));
|
|
653
|
+
extras.push(...await iter(value["__element" /* ELEMENT */], [...location, "__element" /* ELEMENT */]));
|
|
654
654
|
}
|
|
655
655
|
if ("__name" /* NAME */ in value && "__format" /* PARSER */ in value) {
|
|
656
656
|
const variable = [
|
package/package.json
CHANGED