@podium/layout
Advanced tools
Comparing version 3.0.0-beta.4 to 3.0.0-beta.5
@@ -67,2 +67,3 @@ /* eslint-disable no-underscore-dangle */ | ||
Object.defineProperty(this, 'context', { | ||
enumerable: true, | ||
value: new Context( | ||
@@ -83,6 +84,6 @@ merge( | ||
), | ||
enumerable: true, | ||
}); | ||
Object.defineProperty(this, 'proxy', { | ||
Object.defineProperty(this, 'httpProxy', { | ||
enumerable: true, | ||
value: new Proxy( | ||
@@ -118,3 +119,3 @@ merge( | ||
this.proxy.metrics | ||
this.httpProxy.metrics | ||
.pipe(decorate) | ||
@@ -130,3 +131,3 @@ .on('error', err => { | ||
this.client.registry.pipe(this.proxy.registry); | ||
this.client.registry.pipe(this.httpProxy.registry); | ||
} | ||
@@ -142,3 +143,3 @@ | ||
state = await this.context.process(state); | ||
state = await this.proxy.process(state); | ||
state = await this.httpProxy.process(state); | ||
return state; | ||
@@ -145,0 +146,0 @@ } |
{ | ||
"name": "@podium/layout", | ||
"version": "3.0.0-beta.4", | ||
"version": "3.0.0-beta.5", | ||
"description": "Module for composing full page layouts out of page fragments in a micro frontend architecture.", | ||
@@ -57,3 +57,3 @@ "main": "lib/layout.js", | ||
"lint-staged": "^8.1.0", | ||
"prettier": "^1.16.2", | ||
"prettier": "^1.16.3", | ||
"stoppable": "^1.1.0", | ||
@@ -60,0 +60,0 @@ "supertest": "^3.3.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
19738
227