我有一个* .css文件的监视,在事件监视中,我想使用代码调用cssmin任务。 这是手表
'stylesheet-css':
files: ['public/stylesheets/*.css']
以及事件监视的代码
grunt.event.on 'watch', (action,filepath)->
return if filepath.has '.min'
grunt.task.run 'cssmin:stylesheet-css' ## this doesn't seem to do anything.
由于