-
Notifications
You must be signed in to change notification settings - Fork 84
/
Cakefile
28 lines (22 loc) · 798 Bytes
/
Cakefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{spawn, exec} = require 'child_process'
log = console.log
task 'build', ->
run 'coffee -o lib -c src/*.coffee'
task 'test', -> require('./test').run()
task 'bench', -> require('./benchmark').run()
task 'docs', ->
run 'docco src/coffeekup.coffee'
run = (args...) ->
for a in args
switch typeof a
when 'string' then command = a
when 'object'
if a instanceof Array then params = a
else options = a
when 'function' then callback = a
command += ' ' + params.join ' ' if params?
cmd = spawn '/bin/sh', ['-c', command], options
cmd.stdout.on 'data', (data) -> process.stdout.write data
cmd.stderr.on 'data', (data) -> process.stderr.write data
process.on 'SIGHUP', -> cmd.kill()
cmd.on 'exit', (code) -> callback() if callback? and code is 0