Skip to content

Commit

Permalink
Update compiling-on-macos-beta.md
Browse files Browse the repository at this point in the history
  • Loading branch information
Core authored Aug 26, 2022
1 parent 67cdfd7 commit 7134a0c
Showing 1 changed file with 17 additions and 1 deletion.
18 changes: 17 additions & 1 deletion compilation/compiling-on-macos-beta.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit 7134a0c

Please sign in to comment.