We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
#9 was fixed quickly but not tested because the fix is not sufficient.
The problem is now that aurelia-metadata gets loaded first and it creates a very rudimentary System polyfill: basically just forEachModule.
aurelia-metadata
System
forEachModule
When aurelia-bootstrapper loads, it sees window.System and tries to use it, which fails miserably.
aurelia-bootstrapper
window.System
The check that doesn't work: https://github.com/aurelia/bootstrapper/blob/master/src/index.js#L54
Why it fails: https://github.com/aurelia/metadata/blob/master/src/metadata.js#L20
The text was updated successfully, but these errors were encountered:
I think we have this fixed now.
Sorry, something went wrong.
I tried with the latest aurelia-metadata but it did not work. The rest of the packages were still based on aurelia-bootstrapper: ~0.13.1 though.
aurelia-bootstrapper: ~0.13.1
I have a project set up with requirejs, so let me know if you want me to test this.
It's not released yet. Look for it later today or tomorrow morning. There will be a blog post to accompany the release.
No branches or pull requests
#9 was fixed quickly but not tested because the fix is not sufficient.
The problem is now that
aurelia-metadata
gets loaded first and it creates a very rudimentarySystem
polyfill: basically justforEachModule
.When
aurelia-bootstrapper
loads, it seeswindow.System
and tries to use it, which fails miserably.The check that doesn't work:
https://github.com/aurelia/bootstrapper/blob/master/src/index.js#L54
Why it fails:
https://github.com/aurelia/metadata/blob/master/src/metadata.js#L20
The text was updated successfully, but these errors were encountered: