change readme(s)

This commit is contained in:
creations 2025-06-04 10:56:49 -04:00
parent 7e0ff9b0da
commit 38d2f9c265
No known key found for this signature in database
GPG key ID: 8F553AA4320FC711
4 changed files with 16 additions and 14 deletions

View file

@ -240,14 +240,19 @@ sh -c "$(curl -sS https://raw.githubusercontent.com/Equicord/Equicord/refs/heads
### Dependencies
[Git](https://git-scm.com/download) and [Node.JS LTS](https://nodejs.dev/en/) are required.
[Git](https://git-scm.com/download) and [Bun](https://bun.sh/docs/installation) are required.
Install `pnpm`:
> :exclamation: This next command may need to be run as admin/root depending on your system, and you may need to close and reopen your terminal for pnpm to be in your PATH.
Install Bun:
> :exclamation: This next command may need to be run as admin/root depending on your system, and you may need to close and reopen your terminal for Bun to be in your PATH.
**On macOS and Linux:**
```shell
npm i -g pnpm
curl -fsSL https://bun.sh/install | bash
```
**On Windows:**
```shell
powershell -c "irm bun.sh/install.ps1 | iex"
```
> :exclamation: **IMPORTANT** Make sure you aren't using an admin/root terminal from here onwards. It **will** mess up your Discord/Equicord instance and you **will** most likely have to reinstall.
@ -260,21 +265,18 @@ cd Equicord
```
Install dependencies:
```shell
pnpm install --no-frozen-lockfile
bun install
```
Build Equicord:
```shell
pnpm build
bun run build
```
Inject Equicord into your client:
```shell
pnpm inject
bun run inject
```
## Credits