Skip to content

Commit ba78f56

Browse files
committed
chore: migrate from npm to bun, downgrade vite to v6
- switch to bun for faster installs (0.6s vs 23s) - downgrade vite 7.3 -> 6.4.1 (fixes config bug) - update .gitignore for bun and pnpm artifacts - remove package-lock.json, add bun.lock
1 parent f3fc231 commit ba78f56

4 files changed

Lines changed: 797 additions & 5160 deletions

File tree

frontend/.gitignore

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,11 @@ node_modules/
33
.pnp
44
.pnp.js
55

6+
# Package manager locks (using bun.lockb)
7+
package-lock.json
8+
yarn.lock
9+
pnpm-lock.yaml
10+
611
# Testing
712
coverage/
813

@@ -30,7 +35,14 @@ Thumbs.db
3035
npm-debug.log*
3136
yarn-debug.log*
3237
yarn-error.log*
38+
pnpm-debug.log*
3339

3440
# Vite
3541
.vite/
42+
*.local
43+
44+
# Bun
45+
.bun/
46+
47+
# Vercel
3648
.vercel

0 commit comments

Comments
 (0)