lambda-local
Advanced tools
Comparing version 0.0.5 to 0.0.6
@@ -47,2 +47,14 @@ /* | ||
/* | ||
* `fail` method calls the `done` method | ||
*/ | ||
Context.fail = function (err) { | ||
Context.done(err); | ||
}; | ||
/* | ||
* `succeed` method calls the `done` method | ||
*/ | ||
Context.succeed = function (message) { | ||
Context.done(null, message); | ||
}; |
{ | ||
"name": "lambda-local", | ||
"version": "0.0.5", | ||
"version": "0.0.6", | ||
"description": "Commandline tool to run Lambda functions on your local machine.", | ||
@@ -5,0 +5,0 @@ "author": "ashiina", |
9837
231