我正在努力让grunt-contrib-less为我编译一个更少的文件。我有以下gruntfile:
less: {
files: {
"httpdocs/static/assets/css/result.css": "httpdocs/static/assets/css/dashboard.less"
}
},
路径肯定是正确的,我已经三次检查这些文件是否存在,但是,当我运行grunt时,我得到以下消息:
Running "less:files" (less) task
>> Destination not written because no source files were provided.
我的gruntfile中缺少什么才能正确编译较少的文件?我正在撕扯我的头发,因为我知道它可能非常简单,但我无法理解。
答案 0 :(得分:21)
您的less
配置无效,因为您需要将其放入target
内的特定less
。例如
less: {
yourTarget : {
files: {
"httpdocs/static/assets/css/result.css": "httpdocs/static/assets/css/dashboard.less"
}
}
},
并使用
运行 grunt less:yourTarget
您可以为target
命名,但由于less
是一项多任务,因此需要至少有一个目标。