Created
July 30, 2012 20:17
-
-
Save thoolihan/3209819 to your computer and use it in GitHub Desktop.
Basic Cakefile for building all coffeescript files
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{exec} = require 'child_process' | |
task "default", "build the files", (options) -> | |
exec "coffee --compile --output app/ src/" | |
exec "coffee --compile --output spec/ spec/" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment