Files
gitfiti/eric/Cakefile
2013-04-26 20:07:27 -04:00

10 lines
314 B
CoffeeScript

spawn = (require 'child_process').spawn
to_stdio = (emitter) ->
emitter.stdout.on 'data', (data) -> process.stdout.write data
emitter.stderr.on 'data', (data) -> process.stderr.write data
emitter
task 'build', 'Build game file', (options) ->
to_stdio spawn 'coffee', ['--compile', 'eric.coffee']