cancelable-promise
Advanced tools
Comparing version 3.1.0 to 3.1.1
@@ -0,1 +1,6 @@ | ||
## [3.1.1](https://github.com/alkemics/CancelablePromise/releases/tag/v3.1.1) (2020-05-01) | ||
- export CancelablePromiseType and CancelablePromiseConstructor types | ||
- upgrade dev dependencies | ||
## [3.1.0](https://github.com/alkemics/CancelablePromise/releases/tag/v3.1.0) (2020-04-28) | ||
@@ -2,0 +7,0 @@ |
@@ -20,3 +20,3 @@ type PromiseExecutor<T> = ( | ||
interface CancelablePromiseType<T> { | ||
export interface CancelablePromiseType<T> { | ||
/** | ||
@@ -66,3 +66,3 @@ * Attaches callbacks for the resolution and/or rejection of the Promise. | ||
interface CancelablePromiseConstructor { | ||
export interface CancelablePromiseConstructor { | ||
/** | ||
@@ -69,0 +69,0 @@ * Creates a new Promise. |
{ | ||
"name": "cancelable-promise", | ||
"version": "3.1.0", | ||
"version": "3.1.1", | ||
"description": "A simple cancelable promise", | ||
@@ -46,12 +46,12 @@ "main": "dist/CancelablePromise.js", | ||
"@babel/cli": "~7.8.4", | ||
"@babel/core": "~7.9.0", | ||
"@babel/preset-env": "~7.9.0", | ||
"@babel/core": "~7.9.6", | ||
"@babel/preset-env": "~7.9.6", | ||
"babel-eslint": "~10.1.0", | ||
"core-js": "~3.6.4", | ||
"cypress": "~4.4.1", | ||
"cypress": "~4.5.0", | ||
"eslint": "~6.8.0", | ||
"fs-extra": "~9.0.0", | ||
"husky": "~4.2.3", | ||
"jest": "~25.4.0", | ||
"lint-staged": "~10.1.7", | ||
"jest": "~25.5.3", | ||
"lint-staged": "~10.2.1", | ||
"prettier": "~2.0.5", | ||
@@ -58,0 +58,0 @@ "uglify-js": "~3.9.1" |
@@ -20,3 +20,3 @@ type PromiseExecutor<T> = ( | ||
interface CancelablePromiseType<T> { | ||
export interface CancelablePromiseType<T> { | ||
/** | ||
@@ -66,3 +66,3 @@ * Attaches callbacks for the resolution and/or rejection of the Promise. | ||
interface CancelablePromiseConstructor { | ||
export interface CancelablePromiseConstructor { | ||
/** | ||
@@ -69,0 +69,0 @@ * Creates a new Promise. |
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
39151