Skip to content

Commit

Permalink
Tweak whitespace in README.md and update QUnit-CLIB.
Browse files Browse the repository at this point in the history
  • Loading branch information
jdalton committed Oct 1, 2012
1 parent 053161c commit dd9ce73
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 8 deletions.
14 changes: 7 additions & 7 deletions README.md
Expand Up @@ -139,13 +139,13 @@ Unless specified by `-o` or `--output`, all files created are saved to the curre

The following options are also supported:

* `-c`, `--stdout`   Write output to standard output
* `-d`, `--debug`    Write only the debug output
* `-h`, `--help`     Display help information
* `-m`, `--minify`   Write only the minified output
* `-o`, `--output`   Write output to a given path/filename
* `-s`, `--silent`   Skip status updates normally logged to the console
* `-V`, `--version`  Output current version of Lo-Dash
* `-c`, `--stdout`     Write output to standard output
* `-d`, `--debug`       Write only the debug output
* `-h`, `--help`         Display help information
* `-m`, `--minify`     Write only the minified output
* `-o`, `--output`     Write output to a given path/filename
* `-s`, `--silent`     Skip status updates normally logged to the console
* `-V`, `--version`   Output current version of Lo-Dash

The `lodash` command-line utility is available when Lo-Dash is installed as a global package (i.e. `npm install -g lodash`).

Expand Down
7 changes: 6 additions & 1 deletion vendor/qunit-clib/qunit-clib.js
Expand Up @@ -171,7 +171,12 @@

// exit out of Node.js
try {
process.exit(details.failed);
if (details.failed) {
console.error('Error: ' + details.failed + ' of ' + details.total + ' tests failed.');
process.exit(1);
} else {
process.exit(0);
}
} catch(e) { }
}

Expand Down

0 comments on commit dd9ce73

Please sign in to comment.