Skip to content

Commit

Permalink
Merge branch 'master' of github.com:russjp1985/jspackle
Browse files Browse the repository at this point in the history
  • Loading branch information
russpos committed Apr 10, 2012
2 parents 289642f + 6ad7c10 commit 4cd85d5
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions lib/cli.coffee
Expand Up @@ -23,6 +23,7 @@ module.exports = ->
.option('-q, --quiet', 'Only print critical errors to the screen')
.option('-n, --no-color', 'Disable colors in the output')
.option('-m, --minify', 'Minify the build (uses uglify-js)')
.option('-c, --coffee', 'Look for and compile coffee-script files')
.option('-r, --root <root>', 'The of the project', process.cwd()+'/')
.option('-p, --path <path>', 'Path of the config file, relative to root', 'jspackle.json')
.option('-s, --test_server <test_server>', 'Test server', 'http://localhost:9876')
Expand Down Expand Up @@ -64,5 +65,7 @@ module.exports = ->
if program.quiet
logging.setClean true
logging.setLevel 'critical'
if program.coffee
logging.warn 'The coffee option is deprecated. Any source file ending in .coffee will be compiled.'

task()

0 comments on commit 4cd85d5

Please sign in to comment.