feat: Add deep link plugin for mobile (#504)

Co-authored-by: Fabian-Lars <fabianlars@fabianlars.de>
Co-authored-by: Lucas Nogueira <lucas@tauri.app>
Co-authored-by: Lucas Nogueira <lucas@tauri.studio>
This commit is contained in:
Fabian-Lars
2023-09-14 13:55:51 +02:00
committed by GitHub
parent 2409b01fe7
commit eccd6f977a
150 changed files with 12067 additions and 62 deletions
@@ -11,7 +11,7 @@
"tauri": "tauri"
},
"devDependencies": {
"@sveltejs/adapter-auto": "2.1.0",
"@sveltejs/adapter-static": "1.0.0-next.50",
"@sveltejs/kit": "1.22.3",
"@tauri-apps/cli": "2.0.0-alpha.14",
"svelte": "4.0.5",
@@ -1,23 +1,20 @@
[workspace]
[package]
name = "app"
name = "websocket-example"
version = "0.1.0"
description = "A Tauri App"
edition = "2021"
[dependencies]
serde = { version = "1", features = ["derive"] }
serde_json = "1"
tauri = { version = "2.0.0-alpha.12", features = [] }
serde = { workspace = true }
serde_json = { workspace = true }
tauri = { workspace = true }
tokio = { version = "1", features = ["net"] }
futures-util = "0.3"
tauri-plugin-websocket = { path = "../../../" }
tokio-tungstenite = "0.19"
[build-dependencies]
tauri-build = { version = "2.0.0-alpha.4", features = [] }
tauri-build = { workspace = true }
[features]
default = [ "custom-protocol" ]
custom-protocol = [ "tauri/custom-protocol" ]
@@ -1,6 +1,6 @@
{
"build": {
"distDir": "../dist",
"distDir": "../build",
"devPath": "http://localhost:5173/",
"beforeDevCommand": "pnpm dev",
"beforeBuildCommand": "pnpm build",
@@ -0,0 +1,6 @@
// Copyright 2019-2023 Tauri Programme within The Commons Conservancy
// SPDX-License-Identifier: Apache-2.0
// SPDX-License-Identifier: MIT
export const prerender = true;
export const ssr = false;
@@ -2,7 +2,7 @@
// SPDX-License-Identifier: Apache-2.0
// SPDX-License-Identifier: MIT
import adapter from "@sveltejs/adapter-auto";
import adapter from "@sveltejs/adapter-static";
import { vitePreprocess } from "@sveltejs/kit/vite";
/** @type {import('@sveltejs/kit').Config} */