Add --source-map build option. [closes #161]

Former-commit-id: e0cac11fda86671d944de5c157d3df3146d6def1
This commit is contained in:
John-David Dalton
2013-01-18 02:37:22 -08:00
parent 5fe7ca5e70
commit b52d9d1bdd
4 changed files with 134 additions and 50 deletions

View File

@@ -154,13 +154,14 @@ 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
* `-p`, `--source-map`   Generate a source map for the minified output
* `-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`).