-1

我一直无法弄清楚如何运行 grunt-contrib-watch。按规定运行grunt watch只会导致:

Running "watch" task
Waiting...

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

4

1 回答 1

2

刚刚注意到你的 gruntfile 有filed它应该在的位置files

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

试试这个:

watch: {
  files: ['src/**/*'],
  tasks: ['stylus:compile', 'coffee:compile', 'jade:compile'],
}
于 2013-07-14T21:19:12.050 回答