From 4c83435b4b7613409705487f217d2d3a842b20c7 Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Thu, 24 Jan 2013 00:08:52 -0800 Subject: [PATCH] Clarify the `-d` and `-m` build options. [closes #167] Former-commit-id: d3ee420b982291632785d6583a6f2981ab07a635 --- README.md | 4 ++-- build.js | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 4549dc390..d38553354 100644 --- a/README.md +++ b/README.md @@ -156,9 +156,9 @@ 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 + * `-d`, `--debug` ........... Write only the non-minified development output * `-h`, `--help` ............. Display help information - * `-m`, `--minify` ......... Write only the minified output + * `-m`, `--minify` ......... Write only the minified production 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 diff --git a/build.js b/build.js index ce5ee6a09..b6c69b369 100755 --- a/build.js +++ b/build.js @@ -588,9 +588,9 @@ ' Options:', '', ' -c, --stdout Write output to standard output', - ' -d, --debug Write only the debug output', + ' -d, --debug Write only the non-minified development output', ' -h, --help Display help information', - ' -m, --minify Write only the minified output', + ' -m, --minify Write only the minified production 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',