chore: migrate from pnpm to bun for dependency management in workflows and update README instructions

This commit is contained in:
PandaDEV 2025-01-01 16:17:13 +10:00
parent 0a08ce95d2
commit 0f29e0af07
No known key found for this signature in database
GPG key ID: 13EFF9BAF70EE75C
4 changed files with 40 additions and 42 deletions

View file

@ -95,13 +95,13 @@ You can use GitHub Codespaces for online development:
[![][codespaces-shield]][codespaces-link]
Or to get Qopy set up on your machine, you'll need to have Rust and pnpm installed. Then, follow these steps:
Or to get Qopy set up on your machine, you'll need to have Rust and bun installed. Then, follow these steps:
```zsh
git clone https://github.com/0pandadev/Qopy.git
cd Qopy
pnpm i
pnpm dev
bun i
bun dev
```
> \[!TIP]
@ -113,7 +113,7 @@ pnpm dev
To build for production simply execute:
```zsh
pnpm build
bun build
```
> \[!NOTE]