Skip to content

Commit

Permalink
chore: Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
taion committed Mar 18, 2019
1 parent 3d9f2fb commit 3fcef9a
Show file tree
Hide file tree
Showing 3 changed files with 1,028 additions and 576 deletions.
59 changes: 29 additions & 30 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"precommit": "lint-staged",
"prepublish": "npm run build",
"prettier": "prettier --ignore-path .eslintignore '**/*.md'",
"relay-compiler": "relay-compiler --watchman false --src test --schema test/fixtures/schema.graphql",
"relay-compiler": "relay-compiler --src test --schema test/fixtures/schema.graphql",
"tdd": "jest --watch",
"test": "npm run build-fixtures && npm run lint && npm run testonly -- --coverage",
"testonly": "jest --runInBand --verbose",
Expand Down Expand Up @@ -73,52 +73,51 @@
"dependencies": {
"babel-runtime": "^6.26.0",
"is-promise": "^2.1.0",
"lodash": "^4.17.10",
"prop-types": "^15.6.2",
"prop-types-extra": "^1.1.0",
"warning": "^4.0.2"
"lodash": "^4.17.11",
"prop-types": "^15.7.2",
"warning": "^4.0.3"
},
"peerDependencies": {
"found": ">=0.3.8",
"react": ">=16.5.0",
"react-relay": "^2.0.0"
"react-relay": "^2.0.0 || ^3.0.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^8.2.6",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.6.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-add-module-exports": "^1.0.0",
"babel-plugin-dev-expression": "^0.2.1",
"babel-plugin-relay": "^2.0.0",
"babel-plugin-relay": "^3.0.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-1": "^6.24.1",
"codecov": "^3.1.0",
"delay": "^4.0.1",
"doctoc": "^1.3.1",
"eslint": "^4.19.1",
"eslint-config-4catalyzer-react": "^0.4.4",
"eslint-config-prettier": "^3.0.1",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-prettier": "^2.6.2",
"eslint-plugin-react": "^7.11.1",
"farce": "^0.2.6",
"codecov": "^3.2.0",
"delay": "^4.1.0",
"doctoc": "^1.4.0",
"eslint": "^5.15.3",
"eslint-config-4catalyzer-react": "^0.9.0",
"eslint-config-prettier": "^4.1.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.12.4",
"farce": "^0.2.7",
"found": "^0.4.0-alpha.4",
"graphql": "^14.1.0",
"husky": "^0.14.3",
"graphql": "^14.1.1",
"husky": "^1.3.1",
"jest": "^23.6.0",
"lint-staged": "^7.2.2",
"p-defer": "^1.0.0",
"prettier": "^1.14.2",
"lint-staged": "^8.1.5",
"p-defer": "^2.0.0",
"prettier": "^1.16.4",
"react": "^16.5.0",
"react-dom": "^16.5.0",
"react-relay": "^2.0.0",
"relay-compiler": "^2.0.0",
"react-dom": "^16.8.4",
"react-relay": "^3.0.0",
"relay-compiler": "^3.0.0",
"relay-local-schema": "^0.7.0",
"relay-runtime": "^2.0.0",
"rimraf": "^2.6.2"
"relay-runtime": "^3.0.0",
"rimraf": "^2.6.3"
}
}
3 changes: 1 addition & 2 deletions src/ReadyStateRenderer.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import PropTypes from 'prop-types';
import elementType from 'prop-types-extra/lib/elementType';
import React from 'react';
import { ReactRelayContext } from 'react-relay';
import warning from 'warning';
Expand All @@ -13,7 +12,7 @@ const propTypes = {
match: PropTypes.shape({
route: PropTypes.object.isRequired,
}).isRequired,
Component: elementType,
Component: PropTypes.elementType,
isComponentResolved: PropTypes.bool.isRequired,
hasComponent: PropTypes.bool.isRequired,
element: PropTypes.element,
Expand Down
Loading

0 comments on commit 3fcef9a

Please sign in to comment.