以下是我的Gruntfile.js引用jade的部分:
jade: {
html: {
files: [
{
expand: true,
cwd: "source/jade/",
src: "[*.jade]",
dest: "build/",
ext: ".html"
}
]
}
}
我的.jade文件在source / jade / file.jade中,我希望.html文件全部在build / file.html中输出
当我grunt jade
时,它表示任务已经完成且没有错误,但据我所知,我的项目中没有一个文件被更改。有帮助吗?