Comparing version 0.0.6 to 0.1.0
{ | ||
"name": "cheap-di", | ||
"version": "0.0.6", | ||
"version": "0.1.0", | ||
"description": "JavaScript dependency injection like Autofac in .Net", | ||
@@ -5,0 +5,0 @@ "scripts": { |
@@ -71,3 +71,3 @@ # cheap-di | ||
export class ConsoleLogger { | ||
export class ConsoleLogger extends Logger { | ||
constructor(prefix) { | ||
@@ -84,3 +84,3 @@ this.prefix = prefix; | ||
You have the repository consumer. | ||
To allow DI container to inject dependencies in your consumer class you should specify `__constructorParams` static property. | ||
To allow DI container inject dependencies in your consumer class you should specify `__constructorParams` static property. | ||
That property should contain instance types array in the order of your constructor. | ||
@@ -87,0 +87,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
9975