Fix missed return in container.makeNew

orm-types
Garrett Mills 2 years ago
parent 78cb26fcb2
commit b42e91533a

@ -1,6 +1,6 @@
{
"name": "@extollo/lib",
"version": "0.9.16",
"version": "0.9.17",
"description": "The framework library that lifts up your code.",
"main": "lib/index.js",
"types": "lib/index.d.ts",

@ -572,6 +572,7 @@ export class Container {
if ( isAwareOfContainerLifecycle(result) ) {
result.onContainerRealize?.()
}
return result
}
throw new TypeError(`Invalid or unknown make target: ${key}`)

Loading…
Cancel
Save