0

我在以下 gruntfile 中 使用 grunt-vows ( https://github.com/CMTegner/grunt-vows ):

module.exports = function(grunt) {  
  // Project configuration.  
  grunt.loadNpmTasks("grunt-vows");  
  grunt.initConfig({  
    vows: {  
      all: {  
        options: {  
          reporter: "spec",  
          verbose: true,  
          silent: false,  
          colors: true,  
          isolate: false,  
          coverage: "json"  
        },  
        src: ["test/*.js"]  
      }  
    }  
  });  
  // Default task.  
  grunt.registerTask('default', 'vows');  
};  

运行时出现以下错误grunt
TypeError: Object #<Object> has no method 'options'
at Object.<anonymous> (/home/dan/playlist/node_modules/grunt-vows/tasks/vows.js:32:33)
at Object.<anonymous> (/usr/lib/node_modules/grunt/lib/grunt/task.js:109:15)
at Object.thisTask.fn (/usr/lib/node_modules/grunt/lib/grunt/task.js:58:16)

我确信我在某个地方犯了一个简单的错误,在 gruntfile 中是否有任何不合适的地方?

在此先感谢,

4

1 回答 1

1

这是您本地安装的 grunt 和此模块的一些兼容性问题!

如果你安装了 grunt 0.3.x(我认为是你的问题),你可以使用这个插件的旧版本(应该是 grunt-vows@0.3.1 或更早版本)。

可能您能做的最好的事情是将本地安装的 grunt 升级到 0.4.0(请参阅此处的迁移指南:http: //gruntjs.com/upgrading-from-0.3-to-0.4),因为您会遇到这个问题如果你想包含新的 grunt-plugins 的话。

当然这会在已经存在的 gruntfiles 中增加一些额外的工作

于 2013-03-27T10:55:15.630 回答