-
Notifications
You must be signed in to change notification settings - Fork 39
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
Checker does not follow node-semver rules for beta versions #19
Comments
Well, this it the node console output:
This is using the last released version (4.2.0) of |
okay, fine, it doesn't satisfy semver, but that means your error message is completely wrong. npm install doesn't help at all. On Tue, Jan 13, 2015 at 5:51 PM, Emre Unal [email protected]
|
The message is there to make you aware of the situation. It is your responsibility as a developer to fix the problem. One way to fix it is targeting stable version without caret as |
The SO question you link to says that |
If the point of this package has nothing to do with |
If you are really concerned about this, please submit an issue to NPM and bower and link back here. As I said before messaging will probably be fixed by #16 |
My package.json contains this line:
"ember-cli-sass": "^3.0.3",
. Trying to runember build
results in this message:According to the node-semver documentation about prereleases, version
3.1.0-beta
does in fact satisfy the specifier^3.0.3
. Pretty sure it is right, becausenpm install
installed version3.1.0-beta
. Please either follow the specifier rules used by the package managers or change the error message to explain why you don't follow them and how to fix the problem. The error message says to runnpm install
, and that is just flat out wrong.The text was updated successfully, but these errors were encountered: