@adonisjs/sink
Advanced tools
Comparing version 1.0.11 to 1.0.12
@@ -0,1 +1,11 @@ | ||
<a name="1.0.12"></a> | ||
## [1.0.12](https://github.com/adonisjs/adonis-sink/compare/v1.0.11...v1.0.12) (2017-08-09) | ||
### Bug Fixes | ||
* **config:** merge method should not mutate defaults object ([025855e](https://github.com/adonisjs/adonis-sink/commit/025855e)) | ||
<a name="1.0.11"></a> | ||
@@ -2,0 +12,0 @@ ## [1.0.11](https://github.com/adonisjs/adonis-sink/compare/v1.0.10...v1.0.11) (2017-08-01) |
{ | ||
"name": "@adonisjs/sink", | ||
"version": "1.0.11", | ||
"version": "1.0.12", | ||
"description": "Development kitchen sink for writing adonisjs providers", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -75,3 +75,3 @@ 'use strict' | ||
const value = _.get(this._config, key, {}) | ||
return _.mergeWith(defaultValues, value, customizer) | ||
return _.mergeWith({}, defaultValues, value, customizer) | ||
} | ||
@@ -78,0 +78,0 @@ |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
21831