Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@podium/layout

Package Overview
Dependencies
Maintainers
6
Versions
252
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@podium/layout - npm Package Compare versions

Comparing version 5.0.0-next.2 to 5.0.0-next.3

7

CHANGELOG.md

@@ -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 @@

37

lib/layout.js

@@ -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 @@ },

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc