Skip to content

Commit

Permalink
Fix compatibility with React 16.6.0 (#83)
Browse files Browse the repository at this point in the history
  • Loading branch information
michalochman authored Nov 10, 2018
1 parent 7bc586f commit e42768c
Show file tree
Hide file tree
Showing 5 changed files with 61 additions and 30 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased]

### Changed
- Fixed React 16.6.0 compatibility ([#71])


## [0.5.1] - 2018-11-02

Expand Down
2 changes: 1 addition & 1 deletion config/rollup.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ const getPlugins = () => [
"node_modules/react/**",
"node_modules/react-dom/**",
"node_modules/react-reconciler/**",
"node_modules/schedule/**",
"node_modules/scheduler/**",
],
}),
globals(),
Expand Down
67 changes: 43 additions & 24 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"dependencies": {
"fbjs": "^0.8.0",
"performance-now": "^2.1.0",
"react-reconciler": "^0.13.0"
"react-reconciler": "^0.17.0"
},
"peerDependencies": {
"pixi.js": "^4.4.0",
Expand Down
17 changes: 13 additions & 4 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -3304,14 +3304,15 @@ react-dom@^16.0.0:
prop-types "^15.6.2"
schedule "^0.3.0"

react-reconciler@^0.13.0:
version "0.13.0"
resolved "https://registry.yarnpkg.com/react-reconciler/-/react-reconciler-0.13.0.tgz#89a5ff1403d03fee2b8760d515b133ff3d87a044"
react-reconciler@^0.17.0:
version "0.17.0"
resolved "https://registry.yarnpkg.com/react-reconciler/-/react-reconciler-0.17.0.tgz#7ea99b61290956efb895bdb8a3a288dafeb585b5"
integrity sha512-gDcWwagjyNldniQ4TrekdBUAYB6GtZ/PhMCN92G521HcbmKPq/sGd8HI41gEK9/lqeTSR/YFUFEndSIlmS5wLA==
dependencies:
loose-envify "^1.1.0"
object-assign "^4.1.1"
prop-types "^15.6.2"
schedule "^0.3.0"
scheduler "^0.11.0"

react-test-renderer@^16.0.0:
version "16.2.0"
Expand Down Expand Up @@ -3764,6 +3765,14 @@ schedule@^0.3.0:
dependencies:
object-assign "^4.1.1"

scheduler@^0.11.0:
version "0.11.0"
resolved "https://registry.yarnpkg.com/scheduler/-/scheduler-0.11.0.tgz#def1f1bfa6550cc57981a87106e65e8aea41a6b5"
integrity sha512-MAYbBfmiEHxF0W+c4CxMpEqMYK+rYF584VP/qMKSiHM6lTkBKKYOJaDiSILpJHla6hBOsVd6GucPL46o2Uq3sg==
dependencies:
loose-envify "^1.1.0"
object-assign "^4.1.1"

"semver@2 || 3 || 4 || 5":
version "5.4.1"
resolved "https://registry.yarnpkg.com/semver/-/semver-5.4.1.tgz#e059c09d8571f0540823733433505d3a2f00b18e"
Expand Down

0 comments on commit e42768c

Please sign in to comment.