0

I would like to write a Cakefile in litcoffee (as in Cakefile.litcoffee), is there a way to do that?

Cheezmeister
  • 4,895
  • 3
  • 31
  • 37
Dinis Cruz
  • 4,161
  • 2
  • 31
  • 49

1 Answers1

1

It appears that cake does not do any literate checking when it finds and runs your Cakefile. You can of course add this behaviour if you are so inclined.

I would still try running cake -l and adding a #!/usr/bin/env coffee -l shebang to your file, you never know, right?

Barring the above, for what it's worth, I've had success using Grunt with litcoffee using this incantation.

Cheezmeister
  • 4,895
  • 3
  • 31
  • 37