From d522a5f4a9faaf6fd314f4d15f1be65ca997760f Mon Sep 17 00:00:00 2001 From: Lee Robinson Date: Sat, 28 May 2022 06:38:22 -0500 Subject: [PATCH] Add Turborepo to custom toolchains for monorepos. (#4705) --- beta/src/pages/learn/start-a-new-react-project.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/beta/src/pages/learn/start-a-new-react-project.md b/beta/src/pages/learn/start-a-new-react-project.md index 608f43fc5..22a1adfa3 100644 --- a/beta/src/pages/learn/start-a-new-react-project.md +++ b/beta/src/pages/learn/start-a-new-react-project.md @@ -79,5 +79,5 @@ You may prefer to create and configure your own toolchain. A toolchain typically * A **linter** checks your code for common mistakes. Popular linters: [ESLint](https://eslint.org/). * A **test runner** lets you run tests against your code. Popular test runners: [Jest](https://jestjs.io/). -If you prefer to set up your own JavaScript toolchain from scratch, [check out this guide](https://blog.usejournal.com/creating-a-react-app-from-scratch-f3c693b84658) that re-creates some of the Create React App functionality. A framework will usually also provide a routing and a data fetching solution. In a larger project, you might also want to manage multiple packages in a single repository with a tool like [Nx](https://nx.dev/react). +If you prefer to set up your own JavaScript toolchain from scratch, [check out this guide](https://blog.usejournal.com/creating-a-react-app-from-scratch-f3c693b84658) that re-creates some of the Create React App functionality. A framework will usually also provide a routing and a data fetching solution. In a larger project, you might also want to manage multiple packages in a single repository with a tool like [Nx](https://nx.dev/react) or [Turborepo](https://turborepo.org/).