chore: replace pnpm with bun across the project

This commit is contained in:
2026-02-26 13:41:13 -06:00
parent e9e3451c2d
commit f86ab35b32
7 changed files with 34 additions and 6336 deletions
+5 -5
View File
@@ -27,20 +27,20 @@ libraries like [Shadcn-Svelte](https://next.shadcn-svelte.com/).
## Getting Started
> [!WARNING]
> This project uses [`pnpm`](https://pnpm.io/) and uses [patching](https://pnpm.io/cli/patch) to work
> This project uses [`bun`](https://bun.sh/) and uses [patching](https://bun.sh/docs/install/patch) to work
> around some issues with SvelteKit. When this [PR](https://github.com/sveltejs/kit/pull/13812) merges,
> you can remove the patching and use the latest version of SvelteKit.
Start by installing the dependencies:
```
pnpm install
bun install
```
**Development:**
```
pnpm run start
bun start
```
[Electron Forge](https://www.electronforge.io/) with the [Vite plugin](https://www.electronforge.io/plugins/vite)
@@ -50,7 +50,7 @@ will take care of running the development server and building the app for you. Y
**Production:**
```
pnpm run package
bun run package
```
This will build the app and you can find the output in the `out` directory. You can run the production
@@ -60,7 +60,7 @@ for distribution though.
To create a distributable installer, you can use:
```
pnpm run make
bun run make
```
This will create a distributable installer for your app. You can configure this in the `makers` section