I\'ve installed the CoffeeScript plugin via Package Control. When I try to build test.coffee it gives me this:
[Error 2] The system cannot find the file spec
Thanks for the help guys. I've finally found the problem.
On Windows, instead of
"cmd": ["cake", "sbuild"]
it should be
"cmd": ["cake.cmd", "sbuild"]
Instead of modifying it just add:
"windows": { "cmd": ["cake.cmd", "sbuild"] }
That was subtle...