@evosphere/legato
Advanced tools
Comparing version 0.0.6 to 0.0.7
{ | ||
"name": "@evosphere/legato", | ||
"version": "0.0.6", | ||
"version": "0.0.7", | ||
"description": "Service management system", | ||
@@ -5,0 +5,0 @@ "main": "src/index.js", |
@@ -13,10 +13,5 @@ /** | ||
* Represent a Bundle | ||
* @param params | ||
* @constructor | ||
*/ | ||
export default function Bundle(params : { name: string, getDefinitions: () => ServiceMap }) { | ||
this.name = params.name; | ||
this.getDefinitions = params.getDefinitions.bind(this); | ||
this.afterSetup = typeof params.afterSetup === "function" ? params.afterSetup.bind(this) : undefined; | ||
} | ||
export default function Bundle() {} | ||
@@ -44,3 +39,3 @@ /** | ||
return new Bundle(params); | ||
return Object.assign({}, new Bundle(), params); | ||
}; |
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
107500
312