Skip to content

Commit

Permalink
Corrected dependencies for preact and inferno (vercel#2583)
Browse files Browse the repository at this point in the history
* Corrected dependencies for the preact example. Require react and react-dom

* Corrected dependencies for the inferno example. Require react and react-dom
Tom910 authored and timneutkens committed Sep 8, 2017
1 parent ace748d commit b664908
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion examples/using-inferno/package.json
Original file line number Diff line number Diff line change
@@ -11,7 +11,9 @@
"inferno-compat": "^1.4.0",
"inferno-server": "^1.4.0",
"module-alias": "^2.0.0",
"next": "latest"
"next": "latest",
"react": "^15.6.1",
"react-dom": "^15.6.1"
},
"license": "MIT"
}
4 changes: 3 additions & 1 deletion examples/using-preact/package.json
Original file line number Diff line number Diff line change
@@ -10,7 +10,9 @@
"module-alias": "^2.0.0",
"next": "latest",
"preact": "^7.2.0",
"preact-compat": "^3.14.0"
"preact-compat": "^3.14.0",
"react": "^15.6.1",
"react-dom": "^15.6.1"
},
"license": "ISC",
"devDependencies": {

0 comments on commit b664908

Please sign in to comment.