-
-
Notifications
You must be signed in to change notification settings - Fork 55
Fix default blueprint by specifying source. #73
Conversation
hold of on this for now, @mike-north and myself are looking into the source of the issue. |
after a deep dive the correct solution is actually, omit source and use { name: 'ember-cli-test-loader', target: '0.1.3' } bower actually cares about for example: { name: 'a', target: '0.1.3' , source: 'ember-cli/ember-cli-test-loader' },
{ name: 'b', target: '0.1.2' , source: 'ember-cli/ember-cli-test-loader' } should result in:
|
This will work because ember-cli-test-loader is published to the bower registry. On Ember CLI Mocha we have the issue of relying on |
I've also changed this PR to your suggestion, Stef! |
yes, you are correct. For things not published to bower, source should be set. |
53c161e
to
deaf002
Compare
LVGTM |
Fix default blueprint by specifying source.
Thanks for the explanations and quick turnaround on this. |
@blimmer sorry for the original issue, it appears are historic usage of bower was in error. We should release shims to bower and then |
Fixes #72