-
Notifications
You must be signed in to change notification settings - Fork 4
/
Cakefile
26 lines (22 loc) · 821 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
{spawn, exec} = require 'child_process'
fs = require 'fs'
task 'build', 'build the whole jam', (cb) ->
console.log "Building"
files = fs.readdirSync 'src'
files = ('src/' + file for file in files when file.match(/\.coffee$/))
clearLibJs ->
runCoffee ['-c', '-o', 'lib/'].concat(files), ->
console.log "Done building."
cb() if typeof cb is 'function'
runCoffee = (args, cb) ->
proc = spawn 'coffee', args
console.log args
proc.stderr.on 'data', (buffer) -> console.log buffer.toString()
proc.on 'exit', (status) ->
process.exit(1) if status isnt 0
cb() if typeof cb is 'function'
clearLibJs = (cb) ->
files = fs.readdirSync 'lib'
files = ("lib/#{file}" for file in files when file.match(/\.js$/))
fs.unlinkSync f for f in files
cb()