fix(vite): run vite under node, not the bun runtime (rolldown deadlock)
This commit is contained in:
parent
154b7c81f9
commit
4701482613
@ -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",
|
||||
|
||||
Loading…
Reference in New Issue
Block a user