Gruntfile.js:
grunt.initConfig({
watch: {
compass: {
files: [
'app/styles/**/*.{scss,sass}'
],
tasks: 'compass reload'
},
.....
grunt.registerTask('dev', 'watch');
当我跑步时
grunt dev
我得到了错误
Warning: Task "watch" not found. Use --force to continue.
我使用 grunt-cli v0.1.6 和 grunt v0.4.0,安装了 grunt-contrib-watch。