From 7134a0c69523a5933411cadbf8dc77be078e73af Mon Sep 17 00:00:00 2001 From: Core Date: Fri, 26 Aug 2022 08:17:55 +0100 Subject: [PATCH] Update compiling-on-macos-beta.md --- compilation/compiling-on-macos-beta.md | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/compilation/compiling-on-macos-beta.md b/compilation/compiling-on-macos-beta.md index b9c14a6..053170f 100644 --- a/compilation/compiling-on-macos-beta.md +++ b/compilation/compiling-on-macos-beta.md @@ -51,11 +51,27 @@ If you'd like to update your repository in the future to keep up to date use the ### Installing Dependencies -Now for the fun part, by using pnpm or npm (we'll be using yarn in this case) enter the following command to automatically obtain all required dependencies for installation. +Now for the fun part, by using pnpm, npm or yarn (we'll be using pnpm in this case) enter the following command to automatically obtain all required dependencies for installation. +{% tabs %} +{% tab title="pnpm" %} ``` pnpm install ``` +{% endtab %} + +{% tab title="npm" %} +``` +npm install --force +``` +{% endtab %} + +{% tab title="yarn" %} +``` +yarn install +``` +{% endtab %} +{% endtabs %} {% hint style="info" %} This step could take a little while on some machines.