Reputation: 136
How can I do this simple command: coffee --bare --output js/ coffee/
in grunt-coffee config?
Upvotes: 0
Views: 51
Reputation: 58
try
{
expand: true,
cwd: 'coffee_dir',
src: '**/*.coffee',
dest: 'js_dir',
ext: '.js'
}
Upvotes: 1