Sublime Forum

How to make a Cakefile Build system

#1

I have a simple Cakefile that I’d like to create a build system for. It works from the terminal (cake scripts) but can’t get the build system working. What would a build system for the following look like?

task 'all', "Build scripts and styles", ->
	invoke 'scripts'
	invoke 'style'

task 'scripts', "Build and minify javascript/coffee files", ->
    ...

task 'style', 'compile stylus to css', ->
   ....

Thanks

0 Likes