bacongamejam05-notsoalonein.../Cakefile

5 lines
248 B
Plaintext
Raw Normal View History

2013-06-13 21:15:18 +02:00
{exec} = require 'child_process'
task 'sbuild', 'Build project from ./src/*.coffee to ./build/*.js', ->
exec 'coffee --output ./build/ --join game.js --compile ./src/', (err, stdout, stderr) ->
throw err if err
console.log stdout + stderr