grunt.event.on' watch'无法运行任务

时间:2014-01-06 14:49:47

标签: coffeescript gruntjs grunt-contrib-watch

我有一个* .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.

由于

0 个答案:

没有答案