Skip to content

Commit

Permalink
Ensure applicable versions of react are specified (package.json)
Browse files Browse the repository at this point in the history
This package only supports `react` greater than or equal to
v0.14 to stay consistent with React elements schema.

Include all versions of `react` and `react-dom` in devDependencies
to ensure that the latest is installed and tested by Travis CI.
  • Loading branch information
remarkablemark committed Aug 23, 2016
1 parent 1572b7c commit 8c7c7f8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,11 @@
"eslint": "^3.3.1",
"jsdomify": "^2.1.0",
"mocha": "^3.0.2",
"react": "^15.3.0",
"react-dom": "^15.3.0"
"react": "*",
"react-dom": "*"
},
"peerDependencies": {
"react": "^0.13 || ^15.0"
"react": ">=0.14"
},
"browser": {
"htmlparser2/lib/Parser": false,
Expand Down

0 comments on commit 8c7c7f8

Please sign in to comment.