Grunt Watch不起作用

时间:2015-04-16 11:45:33

标签: gruntjs grunt-contrib-watch

我想通过使用Grunt Watch监控css更改,但它对我的css文件夹不起作用。以下是我在grunt文件中的配置,index.html页面受到监控,但css不能。请提出一些建议。

watch: {
  options: {
    livereload: true,
  },
  html: {
    files: ['index.html'],
  },
  js: {
    files: ['js/*.js'],
  },
  css: {
    files: ['css/*.css'],
  }
},
connect: {
  server: {
    options: {
      port: 9000,
      hostname: 'localhost',
      livereload: true,
      base:'',
      open: true
    }
  }
}
grunt.registerTask('default', ['connect', 'watch']);

1 个答案:

答案 0 :(得分:0)

watch: {
    options: {
      livereload: true
    },
    html: {
      files: ['index.html']
    },
    js: {
      files: ['js/*.js']
    },
    css: {
      files: ['css/*.css']
    }
  },
  connect: {
    server: {
      options: {
        port: 9000,
        hostname: 'localhost',
        livereload: true,
        base: '',
        open: true
      }
    }
  }
grunt.registerTask('default', ['connect', 'watch']);

我认为你在某些地方有一些太多的逗号,试试上面的