我一直无法弄清楚如何运行grunt-contrib-watch。按指定运行grunt watch
只会产生:
Running "watch" task
Waiting...
然后我再次回到命令提示符,没有监视进程阻止输入,或者显示在任务管理器中;从昨晚开始我一直在搞乱这个问题,但仍然无法弄清楚我做错了什么。这是我的gruntfile;我正在使用Windows 7机器,如果有任何帮助的话。
答案 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'],
}