Currently there is no way to get components list attached in application. To do it, we have to add some codes to constructor (or other lifecycle) of all components like below
constructor(componentRegistry:ComponentRegistry) {
componentRegistry.add(this);
}
I want a way for this to debug my application. And finally I want to lint my application about component's metadata. For example, I want to know whether there are any components which is named in camelCase.
Is this a difficult or reasonless request?