使用grunt-contrib-haml时,我可以让Grunt监视HAML更改,但不会为HTML生成任何内容。
我需要将哪些内容添加到Gruntfile.js文件才能实现此目的?
答案 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' ]
}
最好的问候:)