From 20a7e47cde8fcda9397bc466eea7a3e4b9835d76 Mon Sep 17 00:00:00 2001 From: Manav Rathi Date: Thu, 16 May 2024 21:43:41 +0530 Subject: [PATCH] lint fix --- web/docs/new.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/web/docs/new.md b/web/docs/new.md index 65d7b9879..0617a8ac6 100644 --- a/web/docs/new.md +++ b/web/docs/new.md @@ -12,9 +12,9 @@ development, here is a recommended workflow: 4. Install **node** on your machine. There are myriad ways to do this, here are some examples: - * macOS: `brew install node@20` + - macOS: `brew install node@20` - * Ubuntu: `sudo apt install nodejs npm && sudo npm i -g corepack` + - Ubuntu: `sudo apt install nodejs npm && sudo npm i -g corepack` 5. Enable corepack. This allows us to use the correct version of our package manager (**Yarn**): @@ -24,12 +24,12 @@ development, here is a recommended workflow: corepack enable ``` - If now you run `yarn --version` in the web directory, you should be seeing a - 1.22.xx version, otherwise your `yarn install` will fail. + If now you run `yarn --version` in the web directory, you should be seeing a + 1.22.xx version, otherwise your `yarn install` will fail. - ```sh - $ yarn --version - 1.22.21 - ``` + ```sh + $ yarn --version + 1.22.21 + ``` That's it. Enjoy coding!