Comparing version 1.2.1 to 1.2.2
@@ -0,5 +1,10 @@ | ||
1.2.2 / 2018-01-25 | ||
================== | ||
* Update Typescript type definitions (thanks @brickyang for #98). | ||
1.2.1 / 2018-01-15 | ||
================== | ||
* Update Typescript type definitions (thanks @brickyang for #90). | ||
* Update Typescript type definitions (thanks @brickyang for #94). | ||
@@ -6,0 +11,0 @@ 1.2.0 / 2018-01-10 |
@@ -112,5 +112,5 @@ import { ClientOpts } from 'redis'; | ||
type DoneCallback<T> = (error: Error | null, result: T) => void; | ||
type DoneCallback<T> = (error: Error | null, result?: T) => void; | ||
} | ||
export = BeeQueue; |
{ | ||
"name": "bee-queue", | ||
"version": "1.2.1", | ||
"version": "1.2.2", | ||
"description": "A simple, fast, robust job/task queue, backed by Redis.", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
86044