Comparing version 0.5.2 to 0.5.3
@@ -155,3 +155,3 @@ var assert = require("assert"); | ||
options.version(version) | ||
.usage("[options] <source directory> <output directory> id1 [id2 [id3 ...]]") | ||
.usage("[options] <source directory> <output directory> <module ID> [<module ID> [<module ID> ...]]") | ||
.option("-c, --config [file]", "JSON configuration file (no file means STDIN)") | ||
@@ -174,3 +174,3 @@ .option("-w, --watch", "Continually rebuild") | ||
absolutePath(workingDir, options.args[1]), // output directory | ||
options.args.slice(2) // root identifiers | ||
options.args.slice(2) // root module identifiers | ||
]).spread(commoner.buildP.bind(commoner)); | ||
@@ -177,0 +177,0 @@ }; |
@@ -17,3 +17,3 @@ { | ||
], | ||
"version": "0.5.2", | ||
"version": "0.5.3", | ||
"homepage": "http://github.com/benjamn/commoner", | ||
@@ -20,0 +20,0 @@ "repository": { |
@@ -48,3 +48,3 @@ Commoner | ||
Usage: commonize [options] <source directory> <output directory> id1 [id2 [id3 ...]] | ||
Usage: commonize [options] <source directory> <output directory> <module ID> [<module ID> [<module ID> ...]] | ||
@@ -59,5 +59,5 @@ Options: | ||
In a single sentence: the `commonize` command finds modules with the given | ||
identifiers `id1`, `id2`, ... in the source directory and places a | ||
processed copy of each module into the output directory, along with | ||
processed copies of all required modules. | ||
module identifiers in the source directory and places a processed copy of | ||
each module into the output directory, along with processed copies of all | ||
required modules. | ||
@@ -64,0 +64,0 @@ Output |
44673