@podium/layout
Advanced tools
Comparing version 5.0.0-next.2 to 5.0.0-next.3
@@ -0,1 +1,8 @@ | ||
# [5.0.0-next.3](https://github.com/podium-lib/layout/compare/v5.0.0-next.2...v5.0.0-next.3) (2020-07-21) | ||
### Bug Fixes | ||
* Remove lodash.merge ([#157](https://github.com/podium-lib/layout/issues/157)) ([ea2bc77](https://github.com/podium-lib/layout/commit/ea2bc77e761c181fb97cb61fb74fccf91238c7d6)) | ||
# [5.0.0-next.2](https://github.com/podium-lib/layout/compare/v5.0.0-next.1...v5.0.0-next.2) (2020-07-21) | ||
@@ -2,0 +9,0 @@ |
@@ -23,3 +23,2 @@ /* eslint-disable consistent-return */ | ||
const Proxy = require('@podium/proxy'); | ||
const merge = require('lodash.merge'); | ||
const pkg = require('../package.json'); | ||
@@ -74,9 +73,3 @@ | ||
value: new Client( | ||
merge( | ||
{ | ||
name: this.name, | ||
logger: this.log, | ||
}, | ||
client, | ||
), | ||
{ name: this.name, logger: this.log, ...client}, | ||
), | ||
@@ -89,15 +82,11 @@ enumerable: true, | ||
value: new Context( | ||
merge( | ||
{ | ||
name: this.name, | ||
mountPathname: { | ||
pathname: this[_pathname], | ||
}, | ||
publicPathname: { | ||
pathname: this[_pathname], | ||
}, | ||
logger: this.log, | ||
{ name: this.name, | ||
mountPathname: { | ||
pathname: this[_pathname], | ||
}, | ||
context, | ||
), | ||
publicPathname: { | ||
pathname: this[_pathname], | ||
}, | ||
logger: this.log, | ||
...context}, | ||
), | ||
@@ -109,9 +98,3 @@ }); | ||
value: new Proxy( | ||
merge( | ||
{ | ||
pathname: this[_pathname], | ||
logger: this.log, | ||
}, | ||
proxy, | ||
), | ||
{ pathname: this[_pathname], logger: this.log, ...proxy}, | ||
), | ||
@@ -118,0 +101,0 @@ }); |
{ | ||
"name": "@podium/layout", | ||
"version": "5.0.0-next.2", | ||
"version": "5.0.0-next.3", | ||
"description": "Module for composing full page layouts out of page fragments in a micro frontend architecture.", | ||
@@ -46,3 +46,2 @@ "main": "lib/layout.js", | ||
"abslog": "2.4.0", | ||
"lodash.merge": "4.6.2", | ||
"objobj": "1.0.0" | ||
@@ -49,0 +48,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
8
35275
251
- Removedlodash.merge@4.6.2
- Removedlodash.merge@4.6.2(transitive)