From ce7ee0e36bea9882f412cc4cde24b38886dc7837 Mon Sep 17 00:00:00 2001 From: Jared Palmer Date: Thu, 9 Dec 2021 09:36:09 -0800 Subject: [PATCH] Fix templates backticks --- create-turbo/templates/npm/README.md | 16 ++++++++-------- create-turbo/templates/pnpm/README.md | 16 ++++++++-------- create-turbo/templates/yarn/README.md | 16 ++++++++-------- examples/basic/README.md | 16 ++++++++-------- examples/with-pnpm/README.md | 16 ++++++++-------- 5 files changed, 40 insertions(+), 40 deletions(-) diff --git a/create-turbo/templates/npm/README.md b/create-turbo/templates/npm/README.md index 7d659e27aa4be..34f31f6d76529 100644 --- a/create-turbo/templates/npm/README.md +++ b/create-turbo/templates/npm/README.md @@ -33,19 +33,19 @@ This repository is used in the `npx create-turbo@latest` command, and selected w To build all apps and packages, run the following command: -´´´ +``` cd my-turborepo npm run build -´´´ +``` ### Develop To develop all apps and packages, run the following command: -´´´ +``` cd my-turborepo npm run dev -´´´ +``` ### Remote Caching @@ -53,18 +53,18 @@ Turborepo can use a technique known as [Remote Caching (Beta)](https://turborepo By default, Turborepo will cache locally. To enable Remote Caching (Beta) you will need an account with Vercel. If you don't have an account you can [create one](https://vercel.com/signup), then enter the following commands: -´´´ +``` cd my-turborepo npx turbo login -´´´ +``` This will authenticate the Turborepo CLI with your [Vercel account](https://vercel.com/docs/concepts/personal-accounts/overview). Next, you can link your Turborepo to your Remote Cache by running the following command from the root of your turborepo: -´´´ +``` npx turbo link -´´´ +``` ## Useful Links diff --git a/create-turbo/templates/pnpm/README.md b/create-turbo/templates/pnpm/README.md index 8e1797490cc67..78c41ba58c4f9 100644 --- a/create-turbo/templates/pnpm/README.md +++ b/create-turbo/templates/pnpm/README.md @@ -33,19 +33,19 @@ This repository is used in the `npx create-turbo@latest` command, and selected w To build all apps and packages, run the following command: -´´´ +``` cd my-turborepo pnpm run build -´´´ +``` ### Develop To develop all apps and packages, run the following command: -´´´ +``` cd my-turborepo pnpm run dev -´´´ +``` ### Remote Caching @@ -53,18 +53,18 @@ Turborepo can use a technique known as [Remote Caching (Beta)](https://turborepo By default, Turborepo will cache locally. To enable Remote Caching (Beta) you will need an account with Vercel. If you don't have an account you can [create one](https://vercel.com/signup), then enter the following commands: -´´´ +``` cd my-turborepo npx turbo login -´´´ +``` This will authenticate the Turborepo CLI with your [Vercel account](https://vercel.com/docs/concepts/personal-accounts/overview). Next, you can link your Turborepo to your Remote Cache by running the following command from the root of your turborepo: -´´´ +``` npx turbo link -´´´ +``` ## Useful Links diff --git a/create-turbo/templates/yarn/README.md b/create-turbo/templates/yarn/README.md index e6aa2933ba0f6..14020f7696fbb 100644 --- a/create-turbo/templates/yarn/README.md +++ b/create-turbo/templates/yarn/README.md @@ -33,19 +33,19 @@ This repository is used in the `npx create-turbo` command, and selected when cho To build all apps and packages, run the following command: -´´´ +``` cd my-turborepo yarn run build -´´´ +``` ### Develop To develop all apps and packages, run the following command: -´´´ +``` cd my-turborepo yarn run dev -´´´ +``` ### Remote Caching @@ -53,18 +53,18 @@ Turborepo can use a technique known as [Remote Caching (Beta)](https://turborepo By default, Turborepo will cache locally. To enable Remote Caching (Beta) you will need an account with Vercel. If you don't have an account you can [create one](https://vercel.com/signup), then enter the following commands: -´´´ +``` cd my-turborepo npx turbo login -´´´ +``` This will authenticate the Turborepo CLI with your [Vercel account](https://vercel.com/docs/concepts/personal-accounts/overview). Next, you can link your Turborepo to your Remote Cache by running the following command from the root of your turborepo: -´´´ +``` npx turbo link -´´´ +``` ## Useful Links diff --git a/examples/basic/README.md b/examples/basic/README.md index 20cf1b5102890..4d38bdab13cb2 100644 --- a/examples/basic/README.md +++ b/examples/basic/README.md @@ -33,19 +33,19 @@ This repository is used in the `npx create-turbo@latest` command, and selected w To build all apps and packages, run the following command: -´´´ +``` cd my-turborepo yarn run build -´´´ +``` ### Develop To develop all apps and packages, run the following command: -´´´ +``` cd my-turborepo yarn run dev -´´´ +``` ### Remote Caching @@ -53,18 +53,18 @@ Turborepo can use a technique known as [Remote Caching (Beta)](https://turborepo By default, Turborepo will cache locally. To enable Remote Caching (Beta) you will need an account with Vercel. If you don't have an account you can [create one](https://vercel.com/signup), then enter the following commands: -´´´ +``` cd my-turborepo npx turbo login -´´´ +``` This will authenticate the Turborepo CLI with your [Vercel account](https://vercel.com/docs/concepts/personal-accounts/overview). Next, you can link your Turborepo to your Remote Cache by running the following command from the root of your turborepo: -´´´ +``` npx turbo link -´´´ +``` ## Useful Links diff --git a/examples/with-pnpm/README.md b/examples/with-pnpm/README.md index 8e1797490cc67..78c41ba58c4f9 100644 --- a/examples/with-pnpm/README.md +++ b/examples/with-pnpm/README.md @@ -33,19 +33,19 @@ This repository is used in the `npx create-turbo@latest` command, and selected w To build all apps and packages, run the following command: -´´´ +``` cd my-turborepo pnpm run build -´´´ +``` ### Develop To develop all apps and packages, run the following command: -´´´ +``` cd my-turborepo pnpm run dev -´´´ +``` ### Remote Caching @@ -53,18 +53,18 @@ Turborepo can use a technique known as [Remote Caching (Beta)](https://turborepo By default, Turborepo will cache locally. To enable Remote Caching (Beta) you will need an account with Vercel. If you don't have an account you can [create one](https://vercel.com/signup), then enter the following commands: -´´´ +``` cd my-turborepo npx turbo login -´´´ +``` This will authenticate the Turborepo CLI with your [Vercel account](https://vercel.com/docs/concepts/personal-accounts/overview). Next, you can link your Turborepo to your Remote Cache by running the following command from the root of your turborepo: -´´´ +``` npx turbo link -´´´ +``` ## Useful Links