@live-change/framework
Advanced tools
Comparing version 0.5.7 to 0.5.8
@@ -86,6 +86,11 @@ const { uidGenerator, randomString } = require('@live-change/uid') | ||
processors = processors.slice() | ||
for(const plugin of sourceService.use) { | ||
processors.unshift(...plugin.processors) | ||
function processUse(service) { | ||
if(service && service.use) { | ||
for(const plugin of service.use) { | ||
processUse(plugin) | ||
} | ||
} | ||
processors.unshift(...service.processors) | ||
} | ||
processors.unshift(...sourceService.processors) | ||
processUse(sourceService) | ||
for(let processor of processors) processor(sourceService, this) | ||
@@ -92,0 +97,0 @@ } |
{ | ||
"name": "@live-change/framework", | ||
"version": "0.5.7", | ||
"version": "0.5.8", | ||
"description": "Live Change Framework - ultimate solution for real time mobile/web apps", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
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
158468
4301