Nathan Hammond
Nathan Hammond
Can you try to use [paramsFor](http://emberjs.com/api/classes/Ember.Route.html#method_paramsFor)?
This is roughly a duplicate of #66. Having already gone through the process I believe that Ember should be a thin core with extension points for the functionality that we...
So today is the day where I finally learn query params. I've made it four years without doing anything more than trivial usage. The goal @trentmwillis mentions here is basically...
Hey y'all, this particular feature (command invocation prevention) has been an absolutely tremendous thorn in our side for the entire time we've been using `corepack`. In that time this feature...
This comment is at least partially wrong; `corepack` checks to make sure there is not an ancestor `node_modules` directory. It may fail if for some reason a user isn't using...
@trentmwillis and I talked about something like this today for one of our own use cases. There is a weird interplay of issues here between Fastboot, lazy engines, app code,...
Se my comment on the related bug. The _substate_ should be a property of the engine itself, not its host.
This would need to be `application-loading` as part of the engine and hoisted from the engine to it's host. It can't load asynchronously and this was an _active_ design decision...
This is the line which is hardcoded: https://github.com/ember-cli/ember-cli/blob/540788ccc8d2d7d89f8fed6a74cf6c0a3398473c/lib/tasks/addon-install.js#L42 This is what eventually invokes that install task: https://github.com/ember-cli/ember-cli/blob/540788ccc8d2d7d89f8fed6a74cf6c0a3398473c/lib/models/blueprint.js#L1065 We already have a way to get generic options all the way into...
A more complete straw man: ``` javascript // Host Application Router.map(function() { this.mount('authentication-engine', { path: '/' }, function() { // These routes would be yielded. this.route('foo'); this.route('bar'); }); }); //...