gulp-karma is deprecated
Upon running yo angular with Gulp as the choice of workflow tool, receive the following error:
npm WARN deprecated [email protected]: Please use Karma directly: https://github.com/karma-runner/gulp-karma
+1
I think npm install --save-dev karma locally in the project might help to fix this (also, there might be a couple other dependencies such as jasmine-core and phantomjs-prebuilt to fix peer dependency issues). This might be a simple documentation fix. Next project I set up I will try this out and report back.
You're running a deprecated version of gulp-karma According to the npm the current is 0.0.5 Add the following to your dependencies:
"gulp-karma": "~0.0.5",
"karma": "~0.13.19"