lots of new files

This commit is contained in:
Eric Romano
2013-04-26 20:07:27 -04:00
parent 3275a2ac96
commit 265ea05f03
11 changed files with 383 additions and 37 deletions

9
eric/Cakefile Normal file
View File

@ -0,0 +1,9 @@
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']