@nestjs/core 11.1.10 → 11.1.11
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/injector/injector.js +5 -1
- package/package.json +3 -3
package/injector/injector.js
CHANGED
|
@@ -257,7 +257,11 @@ class Injector {
|
|
|
257
257
|
* instantiated beforehand.
|
|
258
258
|
*/
|
|
259
259
|
instanceHost.donePromise &&
|
|
260
|
-
void instanceHost.donePromise
|
|
260
|
+
void instanceHost.donePromise
|
|
261
|
+
.then(() => this.loadProvider(instanceWrapper, moduleRef, contextId, inquirer))
|
|
262
|
+
.catch(err => {
|
|
263
|
+
instanceWrapper.settlementSignal?.error(err);
|
|
264
|
+
});
|
|
261
265
|
}
|
|
262
266
|
if (instanceWrapper.async) {
|
|
263
267
|
const host = instanceWrapper.getInstanceByContextId(this.getContextId(contextId, instanceWrapper), inquirerId);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nestjs/core",
|
|
3
|
-
"version": "11.1.
|
|
3
|
+
"version": "11.1.11",
|
|
4
4
|
"description": "Nest - modern, fast, powerful node.js web framework (@core)",
|
|
5
5
|
"author": "Kamil Mysliwiec",
|
|
6
6
|
"license": "MIT",
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
"uid": "2.0.2"
|
|
40
40
|
},
|
|
41
41
|
"devDependencies": {
|
|
42
|
-
"@nestjs/common": "11.1.
|
|
42
|
+
"@nestjs/common": "11.1.11"
|
|
43
43
|
},
|
|
44
44
|
"peerDependencies": {
|
|
45
45
|
"@nestjs/common": "^11.0.0",
|
|
@@ -60,5 +60,5 @@
|
|
|
60
60
|
"optional": true
|
|
61
61
|
}
|
|
62
62
|
},
|
|
63
|
-
"gitHead": "
|
|
63
|
+
"gitHead": "20529c07e3cc6647fa7611ef6eb776ad5507a325"
|
|
64
64
|
}
|