Checkpoint current UI and ink integration state

This commit is contained in:
2026-05-18 02:46:02 +02:00
parent 2c54498ee2
commit d7bb175167
384 changed files with 922883 additions and 764 deletions
+6 -2
View File
@@ -30,8 +30,12 @@ export class BaseModule {
this.dependencies = [];
this._loadedDependencies = new Map();
// Auto-register with module registry
moduleRegistry.register(this);
// Register after subclass constructors have assigned dependencies.
// Several older modules still call moduleRegistry.register explicitly;
// the registry treats those calls as idempotent.
queueMicrotask(() => {
moduleRegistry.register(this);
});
}
/**