configorama 0.6.10 → 0.6.11

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/main.js +3 -3
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "configorama",
3
- "version": "0.6.10",
3
+ "version": "0.6.11",
4
4
  "description": "Variable support for configuration files",
5
5
  "main": "src/index.js",
6
6
  "types": "index.d.ts",
package/src/main.js CHANGED
@@ -723,9 +723,9 @@ class Configorama {
723
723
  const varKeys = Object.keys(variableData)
724
724
  const uniqueVarKeys = Object.keys(uniqueVariables)
725
725
 
726
- // if (this.opts.returnPreResolvedVariableDetails) {
727
- // return metadata
728
- // }
726
+ if (this.opts.returnPreResolvedVariableDetails) {
727
+ return enrich
728
+ }
729
729
 
730
730
  if (!varKeys.length) {
731
731
  logHeader('No Variables Found in Config')