-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathCakefile
37 lines (29 loc) · 1023 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
29
30
31
32
33
34
35
36
37
fs = require 'fs'
{print} = require 'util'
{spawn, exec} = require 'child_process'
# ANSI Terminal Colors
bold = '\033[0;1m'
green = '\033[0;32m'
reset = '\033[0m'
red = '\033[0;31m'
log = (message, color, explanation) ->
console.log color + message + reset + ' ' + (explanation or '')
build = (watch, callback) ->
if typeof watch is 'function'
callback = watch
watch = false
options = ['-c', '-b', '-o', 'lib', 'src']
options.unshift '-w' if watch
coffee = spawn 'coffee', options
coffee.stdout.on 'data', (data) -> print data.toString()
coffee.stderr.on 'data', (data) -> log data.toString(), red
coffee.on 'exit', (status) -> callback?() if status is 0
task 'build', -> build -> log ':)', green
task 'test', ->
exec 'jasmine-node spec --coffee', (err, stdout, stderr) ->
console.log stderr.trim()
console.log stdout.trim()
task 'spec', ->
exec 'jasmine-node spec --coffee', (err, stdout, stderr) ->
console.log stderr.trim()
console.log stdout.trim()