chosen/Cakefile

39 lines
1.2 KiB
Plaintext
Raw Normal View History

fs = require 'fs'
path = require 'path'
{spawn, exec} = require 'child_process'
javascripts = [
'chosen/chosen.jquery.js', 'chosen/chosen.proto.js'
]
# Run a command
#
run = (cmd, args, cb) ->
proc = spawn cmd, args
proc.stderr.on 'data', (buffer) -> console.log buffer.toString()
proc.on 'exit', (status) ->
process.exit(1) if status != 0
cb() if typeof cb is 'function'
2011-07-29 09:36:22 +02:00
coffescript_files = ->
'coffee/' + file for file in (fs.readdirSync 'coffee') when file.match(/\.coffee$/)
# Build Chosen. Requires `coffee` and `uglifyjs`.
#
task 'build', 'build Chosen from source', build = (cb) ->
2011-07-29 09:36:22 +02:00
run 'coffee', ['-c', '-o', 'chosen'].concat(coffescript_files()), ->
cb() if typeof cb is 'function'
unless process.env.MINIFY is 'false'
for javascript in javascripts
uglified = javascript.replace /\.js$/, '.min.js'
run 'uglifyjs', ['-o', uglified, javascript], cb
2011-07-29 09:36:22 +02:00
task 'watch', 'watch coffee/ for changes and build Chosen', ->
console.log "Watching for changes in coffee/"
for file in coffescript_files()
fs.watchFile file, (curr, prev) ->
if +curr.mtime isnt +prev.mtime
console.log "Saw change in #{file}"
invoke 'build'