-
Notifications
You must be signed in to change notification settings - Fork 101
Commit
To prevent duplicates in consumer bundles Change-Id: I5aceb0f151654efebd8d8b86e30e28cac11d37e2 Reviewed-on: https://gerrit.instructure.com/158300 Tested-by: Jenkins Reviewed-by: Ryan Shaw <ryan@instructure.com> Product-Review: Jennifer Stern <jstern@instructure.com> QA-Review: Jennifer Stern <jstern@instructure.com>
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -61,7 +61,7 @@ | |
"@instructure/ui-utils": "^5.20.1", | ||
"lorem-ipsum": "^1.0.5", | ||
"moment": "^2.22.2", | ||
"react": "^15.6.2", | ||
"react-dom": "^15.6.2" | ||
"react": "^0.14.9 || ^15 || ^16", | ||
"react-dom": "^0.14.9 || ^15 || ^16" | ||
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
ryankshaw
Contributor
|
||
} | ||
} |
Hello @junyper ,
Good practices want you to include the popular libs such as
react
,react-dom
,moment
inpeerDependencies
rather than independencies
and let the end user do the lib upgrade manually... see: facebook/prop-types#44