Switch tauri build commands

This commit is contained in:
Bruno Bernardino 2022-02-26 11:49:10 +00:00
parent 69a39257c8
commit 0a18dd1382
No known key found for this signature in database
GPG Key ID: D1B0A69ADD114ECE
1 changed files with 2 additions and 2 deletions

View File

@ -48,8 +48,8 @@
"dev": "lerna run --parallel --scope '@padloc/{server,pwa}' --parallel dev",
"tauri:dev": "lerna run --parallel --scope '@padloc/{server,tauri}' --parallel dev",
"tauri:update": "lerna run update",
"tauri:build": "lerna run build --scope @padloc/tauri",
"tauri:build:debug": "lerna run build:debug",
"tauri:build": "lerna run build:production",
"tauri:build:debug": "lerna run build --scope @padloc/tauri",
"repl": "cd packages/server && npm run repl && cd ../..",
"test": "lerna run test",
"test:e2e": "concurrently --prefix=name --prefix-length=30 --kill-others --success=first -n app,v3-app,maildev,cypress \"PL_DATA_BACKEND=memory PL_DISABLE_SW=true PL_EMAIL_BACKEND=smtp PL_EMAIL_SMTP_HOST=localhost PL_EMAIL_SMTP_PORT=1025 PL_EMAIL_SMTP_IGNORE_TLS=true npm start\" \"npm run start:v3\" \"npx maildev\" \"./node_modules/.bin/wait-on tcp:localhost:8080 && CYPRESS_CRASH_REPORTS=0 cypress run\"",