Skip to content

Commit 8c7c7f8

Browse files
Ensure applicable versions of react are specified (package.json)
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.
1 parent 1572b7c commit 8c7c7f8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,11 @@
3030
"eslint": "^3.3.1",
3131
"jsdomify": "^2.1.0",
3232
"mocha": "^3.0.2",
33-
"react": "^15.3.0",
34-
"react-dom": "^15.3.0"
33+
"react": "*",
34+
"react-dom": "*"
3535
},
3636
"peerDependencies": {
37-
"react": "^0.13 || ^15.0"
37+
"react": ">=0.14"
3838
},
3939
"browser": {
4040
"htmlparser2/lib/Parser": false,

0 commit comments

Comments
 (0)