I am trying to build a yeoman generator and using the tutorial as a guide http://yeoman.io/generators.html#writing-your-first-generator
I copied the Gruntfile.js from the gist referenced and put it in my generator's template directory. When I generate the project, I run
npm install && bower install
then
grunt test
Local Npm module "grunt-template-jasmine-requirejs" not found. Is it installed? Warning: Task "concurrent:test" not found. Use --force to continue.
Aborted due to warnings.
Execution Time (2014-01-10 16:19:20 UTC)
loading tasks 3ms
▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 50%
test 2ms ▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 33%
Total 6ms
It is not clear to me why Grunt concurrent:test is not found. Grunt finds the clean:test task. I tried commenting the concurrent task and none of the other tasks were found for "test" except "clean". Here is the task list
grunt.registerTask('test', [ 'clean:server', 'concurrent:test', 'autoprefixer', 'connect:test', 'karma' ]);
Good point jakerella I see now I was using different grunt file in my yeoman generator then I intended. When I replace Gruntfile.js with the one from the gist referenced in the yeoman tutorial, I get the same issue with a different task. Its says "watch" is not found.
$ ls node_modules/
bower grunt-contrib-compass grunt-contrib-jshint grunt-template-jasmine-requirejs
connect-livereload grunt-contrib-concat grunt-contrib-jst grunt-usemin
grunt grunt-contrib-connect grunt-contrib-livereload load-grunt-tasks
grunt-bower-requirejs grunt-contrib-copy grunt-contrib-requirejs matchdep
grunt-connect-proxy grunt-contrib-cssmin grunt-contrib-uglify moment
grunt-contrib-clean grunt-contrib-htmlmin grunt-open time-grunt
grunt-contrib-coffee grunt-contrib-imagemin grunt-regarde
$ grunt server
>> Local Npm module "grunt-template-jasmine-requirejs" not found. Is it installed?
Warning: Task "watch" not found. Use --force to continue.
Aborted due to warnings.
$
test
multi-task isconnect
... you'll need to provide us with your actual Gruntfile in order for us to help. – Jordan Kasper