From f897e5972ccc4e255bc0c5fd865c8428ef382d89 Mon Sep 17 00:00:00 2001 From: Kim Persson Date: Sun, 30 Jun 2019 15:46:41 +0200 Subject: [PATCH 1/2] docs: note that 2 to 3 migration may require deletion of node_modules --- CHANGELOG.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index c48afc861ce..4230aa31d83 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -103,6 +103,8 @@ or yarn add --exact react-scripts@3.0.0 ``` +You may need to delete your `node_modules` folder and re-install all your dependencies if you run into problems when migrating. + If you previously ejected but now want to upgrade, one common solution is to find the commits where you ejected (and any subsequent commits changing the configuration), revert them, upgrade, and later optionally eject again. It’s also possible that the feature you ejected for is now supported out of the box. ## Breaking Changes From 8a0b4b87ef2d44c9e515e655ba9f1c37772099ac Mon Sep 17 00:00:00 2001 From: Kim Persson Date: Sun, 18 Aug 2019 15:18:27 +0200 Subject: [PATCH 2/2] Update CHANGELOG.md Co-Authored-By: Ian Sutherland --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4230aa31d83..c34e49d4ae3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -103,7 +103,7 @@ or yarn add --exact react-scripts@3.0.0 ``` -You may need to delete your `node_modules` folder and re-install all your dependencies if you run into problems when migrating. +**NOTE: You may need to delete your `node_modules` folder and reinstall your dependencies by running `yarn` (or `npm install`) if you encounter errors after upgrading.** If you previously ejected but now want to upgrade, one common solution is to find the commits where you ejected (and any subsequent commits changing the configuration), revert them, upgrade, and later optionally eject again. It’s also possible that the feature you ejected for is now supported out of the box.