commander 1.3.0 → 1.3.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.
Files changed (3) hide show
  1. package/History.md +5 -0
  2. package/index.js +2 -0
  3. package/package.json +1 -1
package/History.md CHANGED
@@ -1,4 +1,9 @@
1
1
 
2
+ 1.3.1 / 2013-07-18
3
+ ==================
4
+
5
+ * add quick .runningCommand hack so you can opt-out of other logic when running a sub command
6
+
2
7
  1.3.0 / 2013-07-09
3
8
  ==================
4
9
 
package/index.js CHANGED
@@ -418,6 +418,8 @@ Command.prototype.executeSubCommand = function(argv, args, unknown) {
418
418
  console.error('\n %s(1) not executable. try chmod or run with root\n', bin);
419
419
  }
420
420
  });
421
+
422
+ this.runningCommand = proc;
421
423
  };
422
424
 
423
425
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "commander"
3
- , "version": "1.3.0"
3
+ , "version": "1.3.1"
4
4
  , "description": "the complete solution for node.js command-line programs"
5
5
  , "keywords": ["command", "option", "parser", "prompt", "stdin"]
6
6
  , "author": "TJ Holowaychuk <tj@vision-media.ca>"