我按照这里提到的所有说明在我的项目中设置了
npm
、 grunt-cli
和 grunt ,现在我制作了一个 Gruntfile.js
并在其中包含以下代码:
module.export = function(grunt) {
grunt.registerTask('default' , ' ' , function(){
grunt.log.write('This grunt task is pointless !');
});
};
gruntfile 位于我的项目根目录中。当我从 CLI 导航到项目并运行以下命令时:
grunt
我收到错误:
未找到任务“默认”。使用 --force 继续。
为什么我会收到此错误?
打字错误:第一行应该是
module.exports
(注意最后s
)