Skip to content

Commit

Permalink
Temporarily limit versions of React allowed
Browse files Browse the repository at this point in the history
It appears that some change in React 15.4.0 is causing builds to fail in
CI. [See issue facebookarchive#779.](facebookarchive#799)

While we figure that out, let's limit the versions that will be used.
  • Loading branch information
flarnie committed Nov 22, 2016
1 parent db5e436 commit cd46a94
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@
"object-assign": "^4.1.0"
},
"peerDependencies": {
"react": "^0.14.0 || ^15.0.0-rc",
"react-dom": "^0.14.0 || ^15.0.0-rc"
"react": "^0.14.0 || >=15.0.0-rc.1 <=15.3.2",
"react-dom": "^0.14.0 || >=15.0.0-rc.1 <=15.3.2"
},
"devDependencies": {
"babel-core": "^6.8.0",
Expand Down Expand Up @@ -64,8 +64,8 @@
"gulp-uglify": "^1.2.0",
"gulp-util": "^3.0.6",
"jest": "^15.1.1",
"react": "^15.0.0-rc.1",
"react-dom": "^15.0.0-rc.1",
"react": ">=15.0.0-rc.1 <=15.3.2",
"react-dom": ">=15.0.0-rc.1 <=15.3.2",
"run-sequence": "^1.1.2",
"through2": "^2.0.1",
"vinyl-buffer": "^1.0.0",
Expand Down

0 comments on commit cd46a94

Please sign in to comment.