@keystonejs/utils
Advanced tools
Comparing version 5.1.2 to 5.1.3
# @keystonejs/utils | ||
## 5.1.3 | ||
### Patch Changes | ||
- [`38f88b62`](https://github.com/keystonejs/keystone/commit/38f88b62d9592d91b56528d4d9c40e9399440c4a) [#2144](https://github.com/keystonejs/keystone/pull/2144) - Upgraded all @babel/\* dependencies. | ||
* [`f3ea15f8`](https://github.com/keystonejs/keystone/commit/f3ea15f86f7bbd08abddcf3a63c5c66e86693d29) [#2189](https://github.com/keystonejs/keystone/pull/2189) - Upgraded prettier to 1.19.1 and formatted code accordingly. | ||
## 5.1.2 | ||
@@ -4,0 +12,0 @@ |
{ | ||
"name": "@keystonejs/utils", | ||
"description": "Common utility functions used throughout @keystonejs packages.", | ||
"version": "5.1.2", | ||
"version": "5.1.3", | ||
"author": "The KeystoneJS Development Team", | ||
@@ -15,3 +15,3 @@ "license": "MIT", | ||
"dependencies": { | ||
"@babel/runtime": "^7.7.4", | ||
"@babel/runtime": "^7.7.7", | ||
"p-is-promise": "^3.0.0", | ||
@@ -18,0 +18,0 @@ "p-lazy": "^3.0.0", |
@@ -63,3 +63,7 @@ import pLazy from 'p-lazy'; | ||
export const omitBy = (obj, func) => pick(obj, Object.keys(obj).filter(value => !func(value))); | ||
export const omitBy = (obj, func) => | ||
pick( | ||
obj, | ||
Object.keys(obj).filter(value => !func(value)) | ||
); | ||
@@ -66,0 +70,0 @@ export const omit = (obj, keys) => omitBy(obj, value => keys.includes(value)); |
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
New author
Supply chain riskA new npm collaborator published a version of the package for the first time. New collaborators are usually benign additions to a project, but do indicate a change to the security surface area of a package.
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
35784
713
1
Updated@babel/runtime@^7.7.7