grunt がインストールされたフォルダーからより少ないファイルへの相対パスが存在する、より少ないコンパイルの grunt タスクがあります。raw/less/source_map/
ここにグラントファイルがあります。
Gruntfile: (編集: @Yogesh Khatri のコードに変更しても同じ問題)
module.exports = function(grunt) {
grunt.initConfig({
less: {
files: { "raw/less/source_map/style.css" : "raw/less/source_map/style.less" }
},
watch: {
js: {
files: ['raw/less/source_map/style.less'],
tasks: ['default'],
}
}
});
grunt.loadNpmTasks('grunt-contrib-less');
grunt.loadNpmTasks('grunt-contrib-watch');
grunt.registerTask('default', ['less']);
};
それを実行すると、コマンドラインが表示されます
^CMacPro:grunt sagiavinashvarma$ grunt watch
Running "watch" task
Waiting...
>> File "raw/less/source_map/style.less" changed.
Running "less:files" (less) task
Done, without errors.
Completed in 1.862s at Tue Dec 09 2014 15:03:37 GMT+0530 (IST) - Waiting...
しかし、style.css の出力はありません。オプションなしで最も単純な単調なタスクを作成しました。誰でもこれの何が悪いのか指摘できますか。