@cenk1cenk2/oclif-common 3.1.0-beta.12 → 3.1.0-beta.13
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 +2 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -711,8 +711,9 @@ var ConfigService = class {
|
|
|
711
711
|
extension = cb(e, clone, data);
|
|
712
712
|
})
|
|
713
713
|
);
|
|
714
|
-
if (Object.keys(extension)) {
|
|
714
|
+
if (Object.keys(extension).length === 0) {
|
|
715
715
|
this.logger.trace("No more extensions for environment variables: %s -> %d", variable.key.join("."), i);
|
|
716
|
+
config = import_object_path_immutable.default.set(config, [...variable.key, i], extension);
|
|
716
717
|
break;
|
|
717
718
|
}
|
|
718
719
|
config = import_object_path_immutable.default.set(config, [...variable.key, i], extension);
|
package/package.json
CHANGED