From e909a6f7fb97a90257dedf8e7c5ae5fcbc855ffa Mon Sep 17 00:00:00 2001 From: Michael McQuade Date: Thu, 17 Jun 2021 11:02:31 -0500 Subject: [PATCH 1/2] Correct Next.js 9 upgrade instructions --- docs/upgrading.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/docs/upgrading.md b/docs/upgrading.md index 164f500efc3a6..d873ec29d5564 100644 --- a/docs/upgrading.md +++ b/docs/upgrading.md @@ -142,7 +142,11 @@ There were no breaking changes between version 9 and 10. To upgrade run the following command: ``` -npm install next@latest +npm install next@10 +``` +Or using `yarn`: +``` +yarn add next@10 ``` ## Upgrading from version 8 to 9 From 4a6eba4b7bd7e3fb270b5cc8c7842d8be907a4da Mon Sep 17 00:00:00 2001 From: JJ Kasper Date: Thu, 17 Jun 2021 12:25:32 -0500 Subject: [PATCH 2/2] lint-fix --- docs/upgrading.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/upgrading.md b/docs/upgrading.md index d873ec29d5564..f59f4a1522c9e 100644 --- a/docs/upgrading.md +++ b/docs/upgrading.md @@ -144,7 +144,9 @@ To upgrade run the following command: ``` npm install next@10 ``` + Or using `yarn`: + ``` yarn add next@10 ```