mirror of
https://github.com/terribleplan/next.js.git
synced 2024-01-19 02:48:18 +00:00
Corrected dependencies for preact and inferno (#2583)
* Corrected dependencies for the preact example. Require react and react-dom * Corrected dependencies for the inferno example. Require react and react-dom
This commit is contained in:
parent
ace748dcfe
commit
b66490835c
|
@ -11,7 +11,9 @@
|
||||||
"inferno-compat": "^1.4.0",
|
"inferno-compat": "^1.4.0",
|
||||||
"inferno-server": "^1.4.0",
|
"inferno-server": "^1.4.0",
|
||||||
"module-alias": "^2.0.0",
|
"module-alias": "^2.0.0",
|
||||||
"next": "latest"
|
"next": "latest",
|
||||||
|
"react": "^15.6.1",
|
||||||
|
"react-dom": "^15.6.1"
|
||||||
},
|
},
|
||||||
"license": "MIT"
|
"license": "MIT"
|
||||||
}
|
}
|
||||||
|
|
|
@ -10,7 +10,9 @@
|
||||||
"module-alias": "^2.0.0",
|
"module-alias": "^2.0.0",
|
||||||
"next": "latest",
|
"next": "latest",
|
||||||
"preact": "^7.2.0",
|
"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",
|
"license": "ISC",
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
|
|
Loading…
Reference in a new issue