I have a little problem with Grunt. I have grunt-cli v0.1.9 installed globally and grunt v0.4.1 installed locally
Here is my simple Gruntfile.js :
'use strict';
module.exports = function(grunt) {
grunt.registerTask('hello', 'My test task.', function() {
grunt.log.writeln('Hello world');
});
}
However, when I launch :
grunt hello
I have the following message :
Warning: Task "hello" not found. Use --force to continue.
Can somebody tell me what is the problem?