Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

cloud

Package Overview
Dependencies
Maintainers
2
Versions
37
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

cloud - npm Package Compare versions

Comparing version 1.1.0 to 1.2.0

5

History.md
1.2.0 / 2014-01-03
==================
* add optional callback to .parse()
1.1.0 / 2014-01-03

@@ -3,0 +8,0 @@ ==================

8

index.js

@@ -129,6 +129,8 @@

* @param {Array} argv
* @param {Function} [fn]
* @api public
*/
Cloud.prototype.parse = function(argv){
Cloud.prototype.parse = function(argv, fn){
fn = fn || function(){};
var ctx = this.ctx = new Context;

@@ -164,5 +166,3 @@ var self = this;

var n = ~~program.concurrency;
this.runTasks(program.args, n, function(err){
if (err) throw err;
});
this.runTasks(program.args, n, fn);
};

@@ -169,0 +169,0 @@

{
"name": "cloud",
"version": "1.1.0",
"version": "1.2.0",
"repository": "segmentio/cloud",

@@ -5,0 +5,0 @@ "description": "remote scripting like capistrano / fabric for managing clusters",

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc