From 6f38d988dfdc50c92978a1a51ab025714118a5cc Mon Sep 17 00:00:00 2001 From: Imamuzzaki Abu Salam Date: Mon, 6 Feb 2023 18:05:51 +0700 Subject: [PATCH] examples/basic is using PNPM, not Yarn (#3488) This project example uses PNPM as the package manager, but the README.md guide uses PNPM at first and Yarn for the rest of the command docs. Co-authored-by: Mehul Kar --- examples/basic/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/basic/README.md b/examples/basic/README.md index 23fd5278183bc..76b5a33862ea4 100644 --- a/examples/basic/README.md +++ b/examples/basic/README.md @@ -44,7 +44,7 @@ To build all apps and packages, run the following command: ``` cd my-turborepo -yarn run build +pnpm build ``` ### Develop @@ -53,7 +53,7 @@ To develop all apps and packages, run the following command: ``` cd my-turborepo -yarn run dev +pnpm dev ``` ### Remote Caching