From 1d031b536797bb5ac16c556dc399b6bfa4789fb2 Mon Sep 17 00:00:00 2001 From: Johan Haals Date: Fri, 8 Apr 2022 11:18:27 +0200 Subject: [PATCH] fix wording Signed-off-by: Johan Haals --- .changeset/little-moles-pull.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.changeset/little-moles-pull.md b/.changeset/little-moles-pull.md index 8b9f3ca446..592fc13ab6 100644 --- a/.changeset/little-moles-pull.md +++ b/.changeset/little-moles-pull.md @@ -2,7 +2,9 @@ '@backstage/create-app': patch --- -Add type resolutions for `@types/react` and `types/react-dom`. This is an +Add type resolutions for `@types/react` and `types/react-dom`. + +The reason for this is the usage of `"@types/react": "*"` as a dependency which is very common practice in react packages. This recently resolves to react 18 which introduces several breaking changes in both internal and external packages. To apply these changes to your existing installation. Add a resolutions block to your `package.json` @@ -13,7 +15,7 @@ To apply these changes to your existing installation. Add a resolutions block to }, ``` -If your existing app depend on react 16 use this resolution block instead. +If your existing app depends on react 16, use this resolution block instead. ```json "resolutions": {