-
-
Notifications
You must be signed in to change notification settings - Fork 104
New issue
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
Stamp Resolver class to indicate it is a modulesBasedResolver. #75
Conversation
Should it also be on the instance? Or is constructor sufficient Lgtm when green |
Good idea to add to instance (will do), builds are failing because of requiring super-mega old Ruby based ember-dev (changed to ember-cli addon). Should have it fixed shortly, but we definitely need to rework the build system here to be a tad bit saner. |
Due to emberjs/ember.js@f9ecb12 it not possible to call `this.deferReadiness()` in an Application's `init` (because this._readinesDeferrals are not greater than 1 which causes an assertion in the deferReadiness function call).
Mucho annoyance with the tests, but all is green now. Stamping both the instance and the class (Ember itself uses the class). |
Stamp Resolver class to indicate it is a modulesBasedResolver.
And released as 0.1.11. |
Upstream chagnes in Ember require this resolver to be stamped: emberjs/ember.js#9994