Grunt手表没有运行

时间:2013-07-14 11:59:33

标签: gruntjs grunt-contrib-watch

我一直无法弄清楚如何运行grunt-contrib-watch。按指定运行grunt watch只会产生:

Running "watch" task
Waiting...

然后我再次回到命令提示符,没有监视进程阻止输入,或者显示在任务管理器中;从昨晚开始我一直在搞乱这个问题,但仍然无法弄清楚我做错了什么。这是我的gruntfile;我正在使用Windows 7机器,如果有任何帮助的话。

1 个答案:

答案 0 :(得分:2)

注意到你的gruntfile有filed,应该是files

watch: {
  filed: ['src/**/*'],
  tasks: ['stylus:compile', 'coffee:compile', 'jade:compile'],
}

请改为尝试:

watch: {
  files: ['src/**/*'],
  tasks: ['stylus:compile', 'coffee:compile', 'jade:compile'],
}