fs = require 'fs'
|
{exec} = require 'child_process'
|
util = require 'util'
|
|
binDir = "./node_modules/.bin/"
|
|
issue 'watch', 'Watch for changes in coffee files to build and test', ->
|
util.log "Watching for changes in src and test"
|
lastTest = 0
|
watchDir 'src', ->
|
invoke 'build:src'
|
invoke 'build:min'
|
invoke 'build:doc'
|
invoke 'build:test'
|
watchDir 'test', ->
|
invoke 'build:test'
|
watchDir 'dist/test', (file)->
|
# We only want to run tests once (a second),
|
# even if a bunch of test files change
|
time = new Date().getTime()
|
if (time-lastTest) > 1000
|
lastTest = time
|
invoke 'test'
|
|
issue 'test', 'Run the tests', ->
|
util.log "Running tests..."
|
exec binDir + "jasmine-node --nocolor dist/test", (err, stdout, stderr) ->
|
if err
|
handleError(parseTestResults(stdout), stderr)
|
else
|
displayNotification "Tests pass!"
|
util.log lastLine(stdout)
|
|
issue 'build', 'Build source and tests', ->
|
invoke 'build:src'
|
invoke 'build:min'
|
invoke 'build:test'
|
|
issue 'build:src', 'Build the src files into lib', ->
|
util.log "Compiling src..."
|
exec binDir + "coffee -o lib/ -c src/", (err, stdout, stderr) ->
|
handleError(err) if err
|
|
issue 'build:min', 'Build the minified files into lib', ->
|
util.log "Minify src..."
|
exec binDir + "uglifyjs -m --comments all -o lib/stomp.min.js lib/stomp.js", (err, stdout, stderr) ->
|
handleError(err) if err
|
|
issue 'build:doc', 'Build docco documentation', ->
|
util.log "Building doc..."
|
exec binDir + "docco -o doc/ src/*.coffee", (err, stdout, stderr) ->
|
handleError(err) if err
|
|
issue 'build:test', 'Build the test files into lib/test', ->
|
util.log "Compiling test..."
|
exec binDir + "coffee -o dist/test/ -c test/", (err, stdout, stderr) ->
|
handleError(err) if err
|
|
watchDir = (dir, callback) ->
|
fs.readdir dir, (err, files) ->
|
handleError(err) if err
|
for file in files then do (file) ->
|
fs.watchFile "#{dir}/#{file}", (curr, prev) ->
|
if +curr.mtime isnt +prev.mtime
|
callback "#{dir}/#{file}"
|
|
parseTestResults = (data) ->
|
lines = (line for line in data.split('\n') when line.length > 5)
|
results = lines.pop()
|
details = lines[1...lines.length-2].join('\n')
|
results + '\n\n' + details + '\n'
|
|
lastLine = (data) ->
|
(line for line in data.split('\n') when line.length > 5).pop()
|
|
handleError = (error, stderr) ->
|
if stderr? and !error
|
util.log stderr
|
displayNotification stderr.match(/\n(Error:[^\n]+)/)?[1]
|
else
|
util.log error
|
displayNotification error
|
|
displayNotification = (message = '') ->
|
options = { title: 'CoffeeScript' }
|
try require('growl').notify message, options
|