alexa-ability
Advanced tools
Comparing version 0.8.1 to 0.9.0
@@ -147,6 +147,6 @@ 'use strict'; | ||
req.on('finished', function () { | ||
return callback(null, req); | ||
return setImmediate(callback, null, req); | ||
}); | ||
req.on('failed', function (err) { | ||
return callback(err, req); | ||
return setImmediate(callback, err, req); | ||
}); | ||
@@ -153,0 +153,0 @@ |
{ | ||
"name": "alexa-ability", | ||
"version": "0.8.1", | ||
"version": "0.9.0", | ||
"description": "An Alexa skills framework for node", | ||
@@ -5,0 +5,0 @@ "main": "lib/index.js", |
@@ -20,3 +20,2 @@ # alexa-ability [![Build Status](https://travis-ci.org/nickclaw/alexa-ability.svg?branch=master)](https://travis-ci.org/nickclaw/alexa-ability) | ||
* [alexa-utterances](https://npmjs.org/package/alexa-utterances) - Easily generate an exhaustive list of utterances from a few template strings. | ||
* [alexa-ability-user-store](https://github.com/nickclaw/alexa-ability-user-store) - Middleware to store long lasting user data very easily. | ||
* [alexa-ability-timeout](https://npmjs.org/alexa-ability-timeout) - Middleware to prevent your skills from stalling. | ||
@@ -23,0 +22,0 @@ * [node-lambda](https://www.npmjs.com/package/node-lambda) - A command line interface to package and deploy AWS Lambda functions |
38380
81