We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There is one small breaking change in the migration to v1.0
This is related to resolving components asyncronosly via the registerAsync api. See issue #28 for more details.
registerAsync
from
container.registerAsync(System.import('./myComponent'))
to
container.registerAsync(() => System.import('./myComponent'))
This method now needs to be passed a function that returns a promise.