feat: switch project from pnpm to bun

This commit is contained in:
Bohdan Triapitsyn
2025-12-26 16:45:30 +02:00
parent ba0629f955
commit ff874cc33d
17 changed files with 3055 additions and 12096 deletions
+1 -1
View File
@@ -21,7 +21,7 @@ function spawnProcess(command, args, opts = {}) {
async function main() {
await startCli();
const tauriProcess = spawnProcess('pnpm', ['-C', desktopDir, 'tauri', 'dev', '--features', 'devtools']);
const tauriProcess = spawnProcess('bun', ['--cwd', desktopDir, 'tauri', 'dev', '--features', 'devtools']);
let cleaning = false;