@travetto/registry 5.0.0-rc.6 → 5.0.0-rc.7
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
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@travetto/registry",
|
|
3
|
-
"version": "5.0.0-rc.
|
|
3
|
+
"version": "5.0.0-rc.7",
|
|
4
4
|
"description": "Patterns and utilities for handling registration of metadata and functionality for run-time use",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ast-transformations",
|
|
@@ -27,11 +27,11 @@
|
|
|
27
27
|
"directory": "module/registry"
|
|
28
28
|
},
|
|
29
29
|
"dependencies": {
|
|
30
|
-
"@travetto/runtime": "^5.0.0-rc.
|
|
30
|
+
"@travetto/runtime": "^5.0.0-rc.7"
|
|
31
31
|
},
|
|
32
32
|
"peerDependencies": {
|
|
33
|
-
"@travetto/cli": "^5.0.0-rc.
|
|
34
|
-
"@travetto/transformer": "^5.0.0-rc.
|
|
33
|
+
"@travetto/cli": "^5.0.0-rc.7",
|
|
34
|
+
"@travetto/transformer": "^5.0.0-rc.5"
|
|
35
35
|
},
|
|
36
36
|
"peerDependenciesMeta": {
|
|
37
37
|
"@travetto/transformer": {
|
|
@@ -139,8 +139,8 @@ export class ClassSource implements ChangeSource<Class> {
|
|
|
139
139
|
}
|
|
140
140
|
|
|
141
141
|
// Ensure everything is loaded
|
|
142
|
-
for (const
|
|
143
|
-
await
|
|
142
|
+
for (const entry of RuntimeIndex.find(moduleFindConfig)) {
|
|
143
|
+
await Runtime.importFrom(entry.import);
|
|
144
144
|
}
|
|
145
145
|
|
|
146
146
|
// Flush all load events
|