GitHub - recomputing/ready.js: continuous javascript integration using JSLint, Google Compiler and Node.js

usage: 
  readyjs path/to/src path/to/dest [options] 

options:
  -w | --watch            SRC       watch the files with JSLint in SRC
  -o | --order            FILES     specify an order (ex : --order "jquery.js, jquery.ui.js")
  -e | --exclude          FILES     exclude the FILES from JSLint and compilation (ex : -e "jquery.js")
  -i | --installcompiler  PATH      install the google compiler specified by PATH
  -compiledext            EXT       the compiled javascripts will have EXT as an extension
  -aggregateto            FILENAME  the compiled javascripts will be aggregated to this FILENAME
  
  --keep                  will keep the individual minified files
  --nojslint              will not run JSLint
  --nocompiler            will not run the compiler
  --norecursive           will not look for files recursively
  
JsLintOptions:
  You can use any jsLint options (http://bit.ly/jslintoptions) as an argument.
  Example : readyjs /source /dest --evil --maxlen=80

[Use a config file]
readyjs path/to/config.file.js [options] (see http://j.mp/readyjsconfig)