-
Notifications
You must be signed in to change notification settings - Fork 111
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
Updates for latest grunt-karma #17
base: master
Are you sure you want to change the base?
Conversation
@@ -15,9 +15,9 @@ | |||
"grunt-contrib-watch": "~0.4.4", | |||
"grunt-shell": "~0.2.2", | |||
"grunt-contrib-copy": "~0.4.1", | |||
"grunt-karma": "git://github.com/karma-runner/grunt-karma.git#karma-v0.10", | |||
"grunt-karma": "git://github.com/karma-runner/grunt-karma.git", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I had to change this to: "grunt-karma": "~0.6.2" to get my install to work.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Replacing the grunt-karma package reference to "~0.6.2" gave me a peerinvalid
error:
npm ERR! peerinvalid The package karma does not satisfy its siblings' peerDependencies requirements!
However "grunt-karma": "0.6.0"
completed the package install - it's the last version that requires the 0.9.x version of karma, that all the other plugins appear to be expecting.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
+1 for "grunt-karma": "~0.6.2"
. This with "karma": "~0.10"
fixes npm install
issues.
According to its readme, master branch of grunt-karma at version 0.7.x is currently for unstable version of karma 0.11.x.
vote up - required changes for the demo to work |
+1 |
1 similar comment
+1 |
Article as written today (2013-08-07) wasn't working on the npm install step...complaints about grunt-karma section of package.json. Updated URL to grunt-karma repo (currently 0.7) which required an update on the karma dependency version.