to leptos

This commit is contained in:
Bel LaPointe
2023-12-27 08:21:09 -05:00
parent 24498364f1
commit f7ca241cbc
16 changed files with 1167 additions and 95 deletions

3760
src-tauri/Cargo.lock generated

File diff suppressed because it is too large Load Diff

View File

@@ -1,5 +1,5 @@
[package]
name = "pa-home-video-blue-extractinator"
name = "pa-home-video-blue-extractinator-2"
version = "0.0.0"
description = "A Tauri App"
authors = ["you"]
@@ -13,7 +13,6 @@ edition = "2021"
tauri-build = { version = "1.5", features = [] }
[dependencies]
lib = { path = "../src-lib" }
tauri = { version = "1.5", features = ["shell-open"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"

View File

@@ -1,8 +1,6 @@
// Prevents additional console window on Windows in release, DO NOT REMOVE!!
#![cfg_attr(not(debug_assertions), windows_subsystem = "windows")]
use lib;
// Learn more about Tauri commands at https://tauri.app/v1/guides/features/command
#[tauri::command]
fn greet(name: &str) -> String {

View File

@@ -1,13 +1,13 @@
{
"build": {
"beforeDevCommand": "",
"beforeBuildCommand": "",
"devPath": "../src",
"distDir": "../src",
"beforeDevCommand": "trunk serve",
"beforeBuildCommand": "trunk build",
"devPath": "http://localhost:1420",
"distDir": "../dist",
"withGlobalTauri": true
},
"package": {
"productName": "pa-home-video-blue-extractinator",
"productName": "pa-home-video-blue-extractinator-2",
"version": "0.0.0"
},
"tauri": {
@@ -37,7 +37,7 @@
{
"fullscreen": false,
"resizable": true,
"title": "pa-home-video-blue-extractinator",
"title": "pa-home-video-blue-extractinator-2",
"width": 800,
"height": 600
}