@travetto/di 4.0.4 → 4.0.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +3 -3
- package/src/registry.ts +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@travetto/di",
|
|
3
|
-
"version": "4.0.
|
|
3
|
+
"version": "4.0.6",
|
|
4
4
|
"description": "Dependency registration/management and injection support.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ast-transformations",
|
|
@@ -27,10 +27,10 @@
|
|
|
27
27
|
"directory": "module/di"
|
|
28
28
|
},
|
|
29
29
|
"dependencies": {
|
|
30
|
-
"@travetto/registry": "^4.0.
|
|
30
|
+
"@travetto/registry": "^4.0.6"
|
|
31
31
|
},
|
|
32
32
|
"peerDependencies": {
|
|
33
|
-
"@travetto/transformer": "^4.0.
|
|
33
|
+
"@travetto/transformer": "^4.0.4"
|
|
34
34
|
},
|
|
35
35
|
"peerDependenciesMeta": {
|
|
36
36
|
"@travetto/transformer": {
|
package/src/registry.ts
CHANGED
|
@@ -238,7 +238,7 @@ class $DependencyRegistry extends MetadataRegistry<InjectableConfig> {
|
|
|
238
238
|
override async init(): Promise<void> {
|
|
239
239
|
await super.init();
|
|
240
240
|
if (Env.dynamic) {
|
|
241
|
-
const { DependencyRegistration } = await import('../support/dynamic.injection
|
|
241
|
+
const { DependencyRegistration } = await import('../support/dynamic.injection');
|
|
242
242
|
DependencyRegistration.init(this);
|
|
243
243
|
}
|
|
244
244
|
// Allow for auto-creation
|