Yeoman正在观看HAML文件,但没有编译

时间:2013-05-09 20:47:52

标签: haml yeoman gruntjs

使用grunt-contrib-haml时,我可以让Grunt监视HAML更改,但不会为HTML生成任何内容。

我需要将哪些内容添加到Gruntfile.js文件才能实现此目的?

1 个答案:

答案 0 :(得分:0)

您是否在监视任务中指定了grunt-contrib-haml任务来执行haml编译器?也许你做过这样的事情:

watch: {
    files : [ 'public/**/*.haml', 'public/**/*.scss', 'public/**/*.coffee' ]
    tasks : [ 'compass', 'coffee' ]
}

而不是

watch: {
    files : [ 'public/**/*.haml', 'public/**/*.scss', 'public/**/*.coffee' ]
    tasks : [ 'haml', 'compass', 'coffee' ]
}

最好的问候:)