Make global registry better accessible externally

master
Garrett Mills 2 years ago
parent 8774bd8d34
commit 91d76f44b5

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

@ -27,6 +27,12 @@ export class GlobalRegistry {
})
}
/** Initialize the global registry in the current sync context. */
public enter(): this {
this.storage.enterWith(new Collection<GlobalRegistrant>())
return this
}
/**
* Store the given `value` associated by `key`.
* @param key
@ -55,7 +61,7 @@ export class GlobalRegistry {
}
/** Get the globals collection or throw an error if outside async context. */
protected getCollection(): Collection<GlobalRegistrant> {
public getCollection(): Collection<GlobalRegistrant> {
const coll = this.storage.getStore()
if ( !coll ) {
throw new AccessGlobalRegistryOutsideAsyncLifecycleError()

Loading…
Cancel
Save