@wessberg/di-compiler
Advanced tools
Comparing version 1.0.74 to 1.0.75
@@ -0,1 +1,9 @@ | ||
## <small>1.0.75 (2018-07-31)</small> | ||
* 1.0.75 ([cda1053](https://github.com/wessberg/di-compiler/commit/cda1053)) | ||
* Bumped deps ([1491d0c](https://github.com/wessberg/di-compiler/commit/1491d0c)) | ||
* Bumped version ([f27d13b](https://github.com/wessberg/di-compiler/commit/f27d13b)) | ||
## <small>1.0.74 (2018-06-21)</small> | ||
@@ -2,0 +10,0 @@ |
@@ -626,9 +626,9 @@ 'use strict'; | ||
di.DIContainer.registerSingleton(() => diConfig, { identifier: "IDIConfig", implementation: null, constructorArguments: null }); | ||
di.DIContainer.registerSingleton(undefined, { identifier: "IDICompilerBase", implementation: DICompilerBase, constructorArguments: ["IDIConfig", "ICodeAnalyzer", "IContainerServiceConstructor", "IConstructorArgumentService", "IExpressionFinderService", "IExpressionValidatorService", "IExpressionUpdaterService"] }); | ||
di.DIContainer.registerSingleton(undefined, { identifier: "IDICompilerBase", implementation: DICompilerBase, constructorArguments: [] }); | ||
di.DIContainer.registerSingleton(undefined, { identifier: "IDICompiler", implementation: DICompiler, constructorArguments: [] }); | ||
di.DIContainer.registerSingleton(undefined, { identifier: "IConstructorArgumentService", implementation: ConstructorArgumentService, constructorArguments: ["ICodeAnalyzer"] }); | ||
di.DIContainer.registerSingleton(undefined, { identifier: "IExpressionFinderService", implementation: ExpressionFinderService, constructorArguments: ["ICodeAnalyzer", "IDIConfig"] }); | ||
di.DIContainer.registerSingleton(undefined, { identifier: "IExpressionValidatorService", implementation: ExpressionValidatorService, constructorArguments: ["IDIConfig", "ICodeAnalyzer"] }); | ||
di.DIContainer.registerSingleton(undefined, { identifier: "IConstructorArgumentService", implementation: ConstructorArgumentService, constructorArguments: [] }); | ||
di.DIContainer.registerSingleton(undefined, { identifier: "IExpressionFinderService", implementation: ExpressionFinderService, constructorArguments: [] }); | ||
di.DIContainer.registerSingleton(undefined, { identifier: "IExpressionValidatorService", implementation: ExpressionValidatorService, constructorArguments: [] }); | ||
di.DIContainer.registerSingleton(undefined, { identifier: "IExpressionUpdaterService", implementation: ExpressionUpdaterService, constructorArguments: [] }); | ||
di.DIContainer.registerSingleton(undefined, { identifier: "IContainerService", implementation: ContainerService, constructorArguments: ["string", "MagicStringOptions"] }); | ||
di.DIContainer.registerSingleton(undefined, { identifier: "IContainerService", implementation: ContainerService, constructorArguments: [] }); | ||
di.DIContainer.registerSingleton(() => ContainerService, { identifier: "IContainerServiceConstructor", implementation: null, constructorArguments: null }); | ||
@@ -635,0 +635,0 @@ |
@@ -620,9 +620,9 @@ import { CONSTRUCTOR_ARGUMENTS_IDENTIFIER, DIContainer } from '@wessberg/di'; | ||
DIContainer.registerSingleton(() => diConfig, { identifier: "IDIConfig", implementation: null, constructorArguments: null }); | ||
DIContainer.registerSingleton(undefined, { identifier: "IDICompilerBase", implementation: DICompilerBase, constructorArguments: ["IDIConfig", "ICodeAnalyzer", "IContainerServiceConstructor", "IConstructorArgumentService", "IExpressionFinderService", "IExpressionValidatorService", "IExpressionUpdaterService"] }); | ||
DIContainer.registerSingleton(undefined, { identifier: "IDICompilerBase", implementation: DICompilerBase, constructorArguments: [] }); | ||
DIContainer.registerSingleton(undefined, { identifier: "IDICompiler", implementation: DICompiler, constructorArguments: [] }); | ||
DIContainer.registerSingleton(undefined, { identifier: "IConstructorArgumentService", implementation: ConstructorArgumentService, constructorArguments: ["ICodeAnalyzer"] }); | ||
DIContainer.registerSingleton(undefined, { identifier: "IExpressionFinderService", implementation: ExpressionFinderService, constructorArguments: ["ICodeAnalyzer", "IDIConfig"] }); | ||
DIContainer.registerSingleton(undefined, { identifier: "IExpressionValidatorService", implementation: ExpressionValidatorService, constructorArguments: ["IDIConfig", "ICodeAnalyzer"] }); | ||
DIContainer.registerSingleton(undefined, { identifier: "IConstructorArgumentService", implementation: ConstructorArgumentService, constructorArguments: [] }); | ||
DIContainer.registerSingleton(undefined, { identifier: "IExpressionFinderService", implementation: ExpressionFinderService, constructorArguments: [] }); | ||
DIContainer.registerSingleton(undefined, { identifier: "IExpressionValidatorService", implementation: ExpressionValidatorService, constructorArguments: [] }); | ||
DIContainer.registerSingleton(undefined, { identifier: "IExpressionUpdaterService", implementation: ExpressionUpdaterService, constructorArguments: [] }); | ||
DIContainer.registerSingleton(undefined, { identifier: "IContainerService", implementation: ContainerService, constructorArguments: ["string", "MagicStringOptions"] }); | ||
DIContainer.registerSingleton(undefined, { identifier: "IContainerService", implementation: ContainerService, constructorArguments: [] }); | ||
DIContainer.registerSingleton(() => ContainerService, { identifier: "IContainerServiceConstructor", implementation: null, constructorArguments: null }); | ||
@@ -629,0 +629,0 @@ |
{ | ||
"name": "@wessberg/di-compiler", | ||
"version": "1.0.74", | ||
"version": "1.0.75", | ||
"description": "The compiler for https://www.npmjs.com/package/@wessberg/di", | ||
@@ -49,15 +49,15 @@ "scripts": { | ||
"husky": "latest", | ||
"tslint": "^5.10.0", | ||
"@wessberg/rollup-plugin-di": "^1.0.83", | ||
"@wessberg/rollup-plugin-ts": "0.0.25" | ||
"tslint": "^5.11.0", | ||
"@wessberg/rollup-plugin-di": "^1.0.85", | ||
"@wessberg/rollup-plugin-ts": "0.0.32" | ||
}, | ||
"dependencies": { | ||
"@types/node": "^10.3.4", | ||
"@wessberg/codeanalyzer": "^1.0.134", | ||
"@wessberg/di": "^1.0.30", | ||
"@types/node": "^10.5.4", | ||
"@wessberg/codeanalyzer": "^1.0.138", | ||
"@wessberg/di": "^1.1.0", | ||
"chalk": "^2.4.1", | ||
"magic-string": "^0.25.0", | ||
"rollup": "^0.61.1", | ||
"tslib": "^1.9.2", | ||
"typescript": "^2.9.2" | ||
"rollup": "^0.63.4", | ||
"tslib": "^1.9.3", | ||
"typescript": "^3.0.1" | ||
}, | ||
@@ -64,0 +64,0 @@ "repository": { |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
208938
2194
+ Addedrollup@0.63.5(transitive)
- Removedrollup@0.61.2(transitive)
- Removedtypescript@2.9.2(transitive)
Updated@types/node@^10.5.4
Updated@wessberg/di@^1.1.0
Updatedrollup@^0.63.4
Updatedtslib@^1.9.3
Updatedtypescript@^3.0.1