@agoric/promise-kit
Advanced tools
Comparing version 0.1.4 to 0.1.5
@@ -6,2 +6,10 @@ # Change Log | ||
## [0.1.5](https://github.com/Agoric/agoric-sdk/compare/@agoric/promise-kit@0.1.4...@agoric/promise-kit@0.1.5) (2020-09-16) | ||
**Note:** Version bump only for package @agoric/promise-kit | ||
## 0.1.4 (2020-08-31) | ||
@@ -8,0 +16,0 @@ |
{ | ||
"name": "@agoric/promise-kit", | ||
"version": "0.1.4", | ||
"version": "0.1.5", | ||
"description": "Helper for making promises", | ||
@@ -14,3 +14,4 @@ "main": "src/promiseKit.js", | ||
"lint-check": "yarn lint", | ||
"lint": "yarn lint:types && eslint '**/*.js'", | ||
"lint": "yarn lint:types && yarn lint:eslint", | ||
"lint:eslint": "eslint '**/*.js'", | ||
"lint:types": "tsc -p jsconfig.json", | ||
@@ -34,7 +35,8 @@ "lint-fix-jessie": "eslint -c '.eslintrc-jessie.js' --fix '**/*.js'", | ||
"dependencies": { | ||
"@agoric/eventual-send": "^0.10.0" | ||
"@agoric/eventual-send": "^0.11.0" | ||
}, | ||
"devDependencies": { | ||
"ava": "^3.11.1", | ||
"esm": "^3.2.25" | ||
"ava": "^3.12.1", | ||
"esm": "^3.2.25", | ||
"nyc": "^15.1.0" | ||
}, | ||
@@ -48,4 +50,6 @@ "files": [ | ||
"airbnb-base", | ||
"plugin:prettier/recommended" | ||
"plugin:prettier/recommended", | ||
"plugin:jsdoc/recommended" | ||
], | ||
"parser": "@typescript-eslint/parser", | ||
"env": { | ||
@@ -78,3 +82,10 @@ "es6": true | ||
"no-inner-declarations": "off", | ||
"import/prefer-default-export": "off" | ||
"import/prefer-default-export": "off", | ||
"import/no-extraneous-dependencies": "off", | ||
"jsdoc/no-undefined-types": "off", | ||
"jsdoc/require-jsdoc": "off", | ||
"jsdoc/require-property-description": "off", | ||
"jsdoc/require-param-description": "off", | ||
"jsdoc/require-returns": "off", | ||
"jsdoc/require-returns-description": "off" | ||
} | ||
@@ -101,3 +112,3 @@ }, | ||
}, | ||
"gitHead": "709048cc133b0b2b26a9774315c18c5e828ea6ab" | ||
"gitHead": "f5ee0a03901539beb8e8f4aca7b20e01bfbf6ab3" | ||
} |
@@ -71,2 +71,3 @@ /* global harden globalThis */ | ||
/* eslint-disable jsdoc/valid-types */ | ||
/** | ||
@@ -78,2 +79,3 @@ * Determine if the argument is a Promise. | ||
*/ | ||
/* eslint-enable jsdoc/valid-types */ | ||
export function isPromise(maybePromise) { | ||
@@ -80,0 +82,0 @@ return Promise.resolve(maybePromise) === maybePromise; |
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
9068
74
3
+ Added@agoric/eventual-send@0.11.1(transitive)
- Removed@agoric/eventual-send@0.10.0(transitive)