-
-
Notifications
You must be signed in to change notification settings - Fork 22
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
Doesn't handle git dependencies very well #13
Comments
@fivetanley - Ya, I'm happy to follow NPM's lead here. If a dep is specified with a non-semver range (like |
Would love a PR if you have time, I'm unsure if/when I'll have time to tackle myself. |
Similarly, there's no way to know what version of ember |
@rwjblue aren't we doing this already? is this issue obsolete? |
I haven't been able to identify exactly what is the issue here, I believe that in general we do the right thing? |
well looking at https://github.com/ember-cli/ember-cli-version-checker/blob/master/index.js#L63-L74 we seem to already read the version from the |
@rwjblue, We inject ember source file through Also, Why can't we use Ember's |
@Turbo87 - you are correct, this issue is already resolved |
In npm itself, a git specified version can satisfy a dependency if the checked out repository has a
package.json
with aversion
that matches the dependency's version.For example, I would expect the following to work:
I'm happy to implement a pull request for this feature if you agree this feature should be supported.
The text was updated successfully, but these errors were encountered: