From 02347759bd52086790cf2d3dab2c6dc5abf5b230 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Jaenisch?= Date: Fri, 8 Mar 2024 17:16:03 +0100 Subject: [PATCH] chore: document tauri commands MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit In order to not have to remember the command I'm adding it as a npm run-script. Signed-off-by: André Jaenisch --- package.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/package.json b/package.json index b0059a4..ad30d49 100644 --- a/package.json +++ b/package.json @@ -4,7 +4,10 @@ "private": true, "scripts": { "dev": "vite dev", + "dev:tauri": "tauri dev", "build": "vite build", + "build:tauri": "tauri build", + "build:tauri:debug": "tauri build --debug", "preview": "vite preview", "test": "playwright test", "check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",