Grunt watchは私のLESSファイルをコンパイルしましたが、CSSファイルを生成していません。私はその問題が何であるか分からない。誰もそこに助けてもらえますか?ここでgrunt watch lessをコンパイルしましたが、CSSを生成しません
は私の面倒なコードです:
module.exports = function(grunt) {
grunt.loadNpmTasks('grunt-contrib-less');
grunt.loadNpmTasks('grunt-contrib-watch');
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
less: {
options: {
paths: 'less',
yuicompress: true
},
files: {
'styles.css': 'less/button.less'
}
},
watch: {
less: {
files: 'less/*.less',
tasks: 'less'
}
}
});
}
そして、ここでは私のpackage.jsonのコードは次のとおりです。
うなり声ウォッチ:
{
"name": "project-name",
"version": "1.0.0",
"description": "Awesome project",
"devDependencies": {
"grunt-contrib-less": "^1.4.1",
"grunt-contrib-watch": "^1.0.0"
}
}
は、以下の私のフォルダ構造を参照してください。細かい作業: