Change: pnpm to svelte 5

This commit is contained in:
Radixura
2026-05-25 22:38:11 +02:00
parent 5cfef39acb
commit 89b36dc007
6 changed files with 237 additions and 1037 deletions

View File

@@ -15,18 +15,18 @@ To recreate this project with the same configuration:
```sh
# recreate this project
pnpm dlx sv@0.14.0 create --template minimal --types ts --add sveltekit-adapter="adapter:static" --install pnpm radixura_com
bunx sv@0.14.0 create --template minimal --types ts --add sveltekit-adapter="adapter:static" --install bun radixura_com
```
## Developing
Once you've created a project and installed dependencies with `npm install` (or `pnpm install` or `yarn`), start a development server:
Once you've created a project and installed dependencies with `bun install`, start a development server:
```sh
npm run dev
bun run dev
# or start the server and open the app in a new browser tab
npm run dev -- --open
bun run dev -- --open
```
## Building
@@ -34,9 +34,9 @@ npm run dev -- --open
To create a production version of your app:
```sh
npm run build
bun run build
```
You can preview the production build with `npm run preview`.
You can preview the production build with `bun run preview`.
> To deploy your app, you may need to install an [adapter](https://svelte.dev/docs/kit/adapters) for your target environment.