Open monkeymonk opened 10 years ago
Same problem. I haven't dig a lot but in my case: the 'join' option was set to true and I only have one .litcoffee file. Removing this option fix the issue.
could be related to #140 ??
Not for me... no sourcemap in my Gruntfile.js :
coffee: {
compile: {
files: {
'public/js/scripts.js': [
'src/coffeescript/scripts.litcoffee'
]
}
},
}, // coffee
Confirmed.
When trying to compile file in
.litcoffee
Grunt send me an error of syntax:src/coffeescript/scripts.litcoffee
:When I try to compile with
sudo coffee -o ../../public/js -j scripts.js -c scripts.litcoffee
it works as expected.