bacongamejam05-notsoalonein.../src/Cakefile

5 lines
242 B
Plaintext
Raw Normal View History

2013-06-10 16:59:29 +02:00
{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