bacongamejam05-notsoalonein.../src/Cakefile
Ruben Müller c1ac81a24b initial
2013-06-10 16:59:29 +02:00

5 lines
242 B
CoffeeScript

{exec} = require 'child_process'
task 'sbuild', 'Build project from ./*.coffee to ../build/*.js', ->
exec 'coffee --output ../build/ --join game.js --compile ./', (err, stdout, stderr) ->
throw err if err
console.log stdout + stderr