react-children-utilities
Advanced tools
Comparing version 1.0.4 to 1.0.5
{ | ||
"name": "react-children-utilities", | ||
"version": "1.0.4", | ||
"version": "1.0.5", | ||
"description": "Extended utils for React.Children opaque data structure", | ||
@@ -32,3 +32,3 @@ "keywords": [ | ||
"size": "bundlesize", | ||
"preversion": "yarn lint && yarn test && yarn flow && yarn build" | ||
"preversion": "yarn lint && yarn test && yarn flow && yarn build && yarn size" | ||
}, | ||
@@ -46,5 +46,5 @@ "bundlesize": [ | ||
"devDependencies": { | ||
"@babel/cli": "^7.1.2", | ||
"@babel/core": "^7.1.2", | ||
"@babel/preset-env": "^7.1.0", | ||
"@babel/cli": "^7.1.5", | ||
"@babel/core": "^7.1.5", | ||
"@babel/preset-env": "^7.1.5", | ||
"@babel/preset-flow": "^7.0.0", | ||
@@ -61,13 +61,13 @@ "@babel/preset-react": "^7.0.0", | ||
"enzyme": "^3.7.0", | ||
"enzyme-adapter-react-16": "^1.6.0", | ||
"eslint": "^5.8.0", | ||
"enzyme-adapter-react-16": "^1.7.0", | ||
"eslint": "^5.9.0", | ||
"eslint-config-airbnb": "^17.1.0", | ||
"eslint-plugin-flowtype": "^3.1.4", | ||
"eslint-plugin-flowtype": "^3.2.0", | ||
"eslint-plugin-import": "^2.14.0", | ||
"eslint-plugin-jsx-a11y": "^6.1.2", | ||
"eslint-plugin-react": "^7.11.1", | ||
"flow-bin": "^0.84.0", | ||
"husky": "^1.1.2", | ||
"flow-bin": "^0.86.0", | ||
"husky": "^1.1.3", | ||
"jest": "^23.6.0", | ||
"jest-enzyme": "^7.0.0", | ||
"jest-enzyme": "^7.0.1", | ||
"jest-junit": "^5.2.0", | ||
@@ -77,6 +77,6 @@ "make-dir-cli": "^1.0.0", | ||
"prop-types": "^15.6.2", | ||
"raf": "^3.4.0", | ||
"react": "^16.6.0", | ||
"react-dom": "^16.6.0", | ||
"react-test-renderer": "^16.6.0" | ||
"raf": "^3.4.1", | ||
"react": "^16.6.1", | ||
"react-dom": "^16.6.1", | ||
"react-test-renderer": "^16.6.1" | ||
}, | ||
@@ -83,0 +83,0 @@ "engines": { |
@@ -115,3 +115,3 @@ // @flow | ||
*/ | ||
deepFind(children: Node, deepFindFn): Node | void { | ||
deepFind(children: Node, deepFindFn: (child: Node) => boolean): Node | void { | ||
return Children | ||
@@ -118,0 +118,0 @@ .toArray(children) |
Sorry, the diff of this file is not supported yet
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
37006