commander 1.0.3 → 1.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/History.md +22 -0
- package/Readme.md +8 -0
- package/index.js +1130 -1
- package/package.json +1 -1
- package/lib/commander.js +0 -1042
package/History.md
CHANGED
|
@@ -1,4 +1,26 @@
|
|
|
1
1
|
|
|
2
|
+
1.1.1 / 2012-11-20
|
|
3
|
+
==================
|
|
4
|
+
|
|
5
|
+
* add more sub-command padding
|
|
6
|
+
* fix .usage() when args are present. Closes #106
|
|
7
|
+
|
|
8
|
+
1.1.0 / 2012-11-16
|
|
9
|
+
==================
|
|
10
|
+
|
|
11
|
+
* add git-style executable subcommand support. Closes #94
|
|
12
|
+
|
|
13
|
+
1.0.5 / 2012-10-09
|
|
14
|
+
==================
|
|
15
|
+
|
|
16
|
+
* fix `--name` clobbering. Closes #92
|
|
17
|
+
* fix examples/help. Closes #89
|
|
18
|
+
|
|
19
|
+
1.0.4 / 2012-09-03
|
|
20
|
+
==================
|
|
21
|
+
|
|
22
|
+
* add `outputHelp()` method.
|
|
23
|
+
|
|
2
24
|
1.0.3 / 2012-08-30
|
|
3
25
|
==================
|
|
4
26
|
|
package/Readme.md
CHANGED
|
@@ -228,6 +228,14 @@ program.choose(list, function(i){
|
|
|
228
228
|
});
|
|
229
229
|
```
|
|
230
230
|
|
|
231
|
+
## .outputHelp()
|
|
232
|
+
|
|
233
|
+
Output help information without exiting.
|
|
234
|
+
|
|
235
|
+
## .help()
|
|
236
|
+
|
|
237
|
+
Output help information and exit immediately.
|
|
238
|
+
|
|
231
239
|
## Links
|
|
232
240
|
|
|
233
241
|
- [API documentation](http://visionmedia.github.com/commander.js/)
|