node.js - Grunt-contrib-coffee doesn't write to output file (silently fails without throwing an error) -
i'm using grunt-contrib-coffee v.0.7.0 grunt v0.4.1.
i've declared coffeescript task in gruntfile.coffee this:
coffee: dev: 'asd.js': 'asd.coffee'
in same directory have asd.coffee contains
hello = 'hi'
and asd.js empty.
when run grunt coffee
in terminal, prints:
running "coffee:dev" (coffee) task done, without errors.
but nothing ever written asd.js (or anywhere). what's going wrong? how can fix this?
change to:
coffee: dev: files: 'asd.js': 'asd.coffee'
Comments
Post a Comment