fix(vite): run vite under node, not the bun runtime (rolldown deadlock)

This commit is contained in:
Arthur Pariente 2026-06-14 12:07:36 +02:00
parent 154b7c81f9
commit 4701482613
No known key found for this signature in database

View File

@ -2,9 +2,9 @@
"private": true,
"type": "module",
"scripts": {
"dev": "bun x --bun vite",
"dev": "vite",
"dev:components": "bun bin/build.js --dev",
"build": "bun x --bun vite build && bun bin/build.js",
"build": "vite build && bun bin/build.js",
"build:components": "bun bin/build.js",
"clean": "rm -rf public/build resources/js/dist",
"lint": "oxlint",
@ -12,7 +12,7 @@
"fmt": "oxfmt",
"fmt:check": "oxfmt --check",
"typecheck": "tsc --noEmit",
"test": "bun x --bun vitest run"
"test": "vitest run"
},
"dependencies": {
"@date-fns/tz": "^1.5.0",